openidlogin.jsp 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <%@ taglib prefix='c' uri='http://java.sun.com/jsp/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>Open ID Login</title>
  8. </head>
  9. <body onload="document.f.j_username.focus();">
  10. <h3>Please Enter Your OpenID Identity</h3>
  11. <%-- this form-login-page form is also used as the
  12. form-error-page to ask for a login again.
  13. --%>
  14. <c:if test="${not empty param.login_error}">
  15. <font color="red">
  16. Your login attempt was not successful, try again.<br/><br/>
  17. Reason: <%= ((AuthenticationException) session.getAttribute(AbstractProcessingFilter.SPRING_SECURITY_LAST_EXCEPTION_KEY)).getMessage() %>
  18. </font>
  19. </c:if>
  20. <form name="f" action="<c:url value='j_spring_openid_security_check'/>" method="POST">
  21. <table>
  22. <tr><td>OpenID Identity:</td><td><input type='text' name='j_username' <c:if test="${not empty param.login_error}">value='<%= session.getAttribute(AuthenticationProcessingFilter.SPRING_SECURITY_LAST_USERNAME_KEY) %>'</c:if>></td></tr>
  23. <tr><td colspan='2'><input name="submit" type="submit"></td></tr>
  24. <tr><td colspan='2'><input name="reset" type="reset"></td></tr>
  25. </table>
  26. </form>
  27. </body>
  28. </html>