login.xhtml
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:c="http://java.sun.com/jstl/core_rt"> <head> <title>Welcome Customer</title> </head> <body> <h:panelGroup rendered="${not empty param.login_error}"> <font color="red"> Your login attempt was not successful, try again.<br /> <br /> Reason: <c:out value="${SPRING_SECURITY_LAST_EXCEPTION.message}" />. </font> </h:panelGroup> <form action="#{request.contextPath}/j_spring_security_check" method="post"> <table> <tr> <td>User:</td> <td><input type='text' name='j_username' value="${SPRING_SECURITY_LAST_USERNAME}" /></td> </tr> <tr> <td>Password:</td> <td><input type='password' name='j_password' /></td> </tr> <tr> <td><input type="checkbox" name="_spring_security_remember_me" /></td> <td>Don't ask for my password for two weeks</td> </tr> <tr> <td colspan='2'><input name="submit" type="submit" /></td> </tr> <tr> <td colspan='2'><input name="reset" type="reset" /></td> </tr> </table> </form> </body> </html>
Date: 2011-02-11 Fr
HTML generated by org-mode 7.4 in emacs 22