Hi!
I know this question has been asked many times, but I tried all the solution and it still don't work.
Here's my code :
public static Result login() {
return ok (
views.html.secure.index(form(Login.class))
);
}
From eclipse, the error is : "views.html cannot be resolved to a type".
And when I go to the browser, here's the error :
Compilation error
cannot find symbol [symbol: class secure] [location: package views.html]
I tried with views.html.secure.login, secure.login, login, index. Nothing works.
(login.scala.html is in the folder views/secure/login.scala.html, and I have a views/index.scala.html)