acegilogin.jsp 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <%@ taglib prefix='c' uri='http://java.sun.com/jstl/core' %>
  2. <%@ page import="org.springframework.security.ui.AbstractProcessingFilter" %>
  3. <%@ page import="org.springframework.security.ui.webapp.AuthenticationProcessingFilter" %>
  4. <%@ page import="org.springframework.security.AuthenticationException" %>
  5. <html>
  6. <head>
  7. <title>Login</title>
  8. </head>
  9. <body>
  10. <h1>Login</h1>
  11. <P>Valid users:
  12. <P>
  13. <P>username <b>rod</b>, password <b>koala</b> (supervisor)
  14. <P>username <b>dianne</b>, password <b>emu</b> (normal user)
  15. <p>username <b>scott</b>, password <b>wombat</b> (normal user)
  16. <p>username <b>peter</b>, password <b>opal</b> (user disabled)
  17. <p>
  18. <%-- this form-login-page form is also used as the
  19. form-error-page to ask for a login again.
  20. --%>
  21. <c:if test="${not empty param.login_error}">
  22. <font color="red">
  23. Your login attempt was not successful, try again.<BR><BR>
  24. Reason: <%= ((AuthenticationException) session.getAttribute(AbstractProcessingFilter.SPRING_SECURITY_LAST_EXCEPTION_KEY)).getMessage() %>
  25. </font>
  26. </c:if>
  27. <form action="<c:url value='j_spring_security_check'/>" method="POST">
  28. <table>
  29. <tr><td>User:</td><td><input type='text' name='j_username' <c:if test="${not empty param.login_error}">value='<c:out value="${ACEGI_SECURITY_LAST_USERNAME}"/>'</c:if>></td></tr>
  30. <tr><td>Password:</td><td><input type='password' name='j_password'></td></tr>
  31. <tr><td><input type="checkbox" name="_spring_security_remember_me"></td><td>Don't ask for my password for two weeks</td></tr>
  32. <tr><td colspan='2'><input name="submit" type="submit"></td></tr>
  33. <tr><td colspan='2'><input name="reset" type="reset"></td></tr>
  34. </table>
  35. </form>
  36. </body>
  37. </html>