Update LoginController.java

This commit is contained in:
Dhawal Kapil 2018-10-10 20:20:55 +05:30 committed by GitHub
parent 506a973c82
commit 6f619dec41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -4,13 +4,12 @@ import javax.mvc.annotation.Controller;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
@Path("/login")
@Path("/auth/login")
@Controller
public class LoginController {
@GET
public String login() {
System.out.println("Login");
return "login.jsp";
}
}