acegilogin.jsp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <%@ taglib prefix='c' uri='http://java.sun.com/jstl/core' %>
  2. <%@ page import="net.sf.acegisecurity.ui.AbstractProcessingFilter" %>
  3. <%@ page import="net.sf.acegisecurity.AuthenticationException" %>
  4. <html>
  5. <head>
  6. <title>Login</title>
  7. </head>
  8. <body>
  9. <h1>Login</h1>
  10. <P>If you've used the standardInMemoryDaoImpl config, try these users:
  11. <P>
  12. <P>username <b>marissa</b>, password <b>koala</b> (granted ROLE_SUPERVISOR)
  13. <P>username <b>dianne</b>, password <b>emu</b> (not a supervisor)
  14. <p>username <b>scott</b>, password <b>wombat</b> (not a supervisor)
  15. <p>
  16. <%-- this form-login-page form is also used as the
  17. form-error-page to ask for a login again.
  18. --%>
  19. <c:if test="${not empty param.login_error}">
  20. <font color="red">
  21. Your login attempt was not successful, try again.<BR><BR>
  22. Reason: <%= ((AuthenticationException) session.getAttribute(AbstractProcessingFilter.ACEGI_SECURITY_LAST_EXCEPTION_KEY)).getMessage() %>
  23. </font>
  24. </c:if>
  25. <form action="<c:url value='j_acegi_security_check'/>" method="POST">
  26. <table>
  27. <tr><td>User:</td><td><input type='text' name='j_username'></td></tr>
  28. <tr><td>Password:</td><td><input type='password' name='j_password'></td></tr>
  29. <tr><td colspan='2'><input name="submit" type="submit"></td></tr>
  30. <tr><td colspan='2'><input name="reset" type="reset"></td></tr>
  31. </table>
  32. </form>
  33. </body>
  34. </html>