Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/loginFull.jsp
Christian Corsano e3f0133ffc Ajout de l'UC ForgotPassword
Modification CSS
Mise en place des blocs arondis (cbb)
Clarification interface pages login avec les blocs cbb
Correction articleController : validation
2008-02-14 12:14:51 +00:00

43 lines
1.4 KiB
Plaintext

<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head></head>
<body>
<h4 class="title"><fmt:message key="login.title" /></h4>
<c:if test="${not empty param.login_error}">
<div class="login_error">
<fmt:message key="login.message.error" /><br /><br />
</div>
</c:if><br />
<br />
<table width="100%">
<tr><td width="50%">
<div class="cbb">
<h2><fmt:message key="login.label.createnewuser" /></h2>
<fmt:message key="login.label.createaccount" /><br />
<a href="registerUser.htm"><fmt:message key="login.label.register" /></a>
</div>
</td><td>
<div class="cbb">
<h2><fmt:message key="login.label.alreadyaccount" /> :</h2>
<form action="<c:url value='j_acegi_security_check'/>" method="POST" id="formlogin">
<fmt:message key="login.label.login" /> : <input type='text' name='j_username' /><br />
<fmt:message key="login.label.password" /> : <input type='password' name='j_password' /><br />
<input type="checkbox" name="_acegi_security_remember_me"/>&nbsp;&nbsp;<fmt:message key='login.label.rememberme' /><br />
<br /><br />
<a href="javascript:document.getElementById('formlogin').submit();" id="submit_btn"><fmt:message key="login.btn.connexion" /></a>
</form>
<div class="yacos_button">
<a href="<c:url value="/forgotPassword.htm"/>">
<fmt:message key="login.label.forgotPasswordHeading"/>
</a>
</div>
</div>
</td></tr>
</table>
</body>
</html>