Page d'erreur pour le login -> renvoi vers la page de login/création de compte complet (loginFull.jsp)

This commit is contained in:
Nicolas Michard
2008-02-04 14:05:45 +00:00
parent e9930c6791
commit af13dfaded
10 changed files with 56 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head></head>
<body>
<form action="<c:url value='j_acegi_security_check'/>" method="POST" id="formlogin">
<a href="#" id="connexion">Connexion :</a>
<input type='text' name='j_username' value="<fmt:message key='login.field.login' />" onfocus="if (this.value == '<fmt:message key='login.field.login' />') { this.value = ''; }" onblur="if (this.value == '') { this.value = '<fmt:message key='login.field.login' />'; }" />
<input type='password' name='j_password' />
<a href="javascript:document.getElementById('formlogin').submit();" id="submit_btn"><fmt:message key="login.btn.submit" /></a>
</form>
</body>
</html>