Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/loginFull.jsp

34 lines
1.1 KiB
Plaintext

<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head></head>
<body>
<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%">
<fmt:message key="login.label.createnewuser" /><br />
<fmt:message key="login.label.createaccount" /><br />
<a href="registerUser.htm"><fmt:message key="login.label.continue" /></a>
</td><td>
<fmt:message key="login.label.alreadyaccount" /> :<br />
<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.label.connexion" /></a>
</form>
</td></tr>
</table>
</body>
</html>