wisemapping-open-source/wise-webapp/src/main/webapp/jsp/forgotPassword.jsp

33 lines
1.1 KiB
Plaintext
Raw Normal View History

2009-06-07 20:59:43 +02:00
<%@ include file="/jsp/init.jsp" %>
2012-05-19 06:58:37 +02:00
<div>
<div class="fform">
2009-06-07 20:59:43 +02:00
<h1>
<spring:message code="FORGOT_PASSWORD"/>
</h1>
2012-05-19 06:58:37 +02:00
<p><spring:message code="FORGOT_PASSWORD_MESSAGE"/></p>
2009-06-07 20:59:43 +02:00
<form:form method="post" commandName="forgotPassword">
2012-05-19 06:58:37 +02:00
<fieldset>
<label for="email"><spring:message code="EMAIL"/></label>
<form:input path="email" id="email" tabindex="1" type="email" required="required"/>
<form:errors path="email" cssClass="errorMsg"/>
<input type="submit" value="<spring:message code="SUBMIT"/>" class="btn btn-primary"/>
<input type="button" value="<spring:message code="CANCEL"/>" class="btn"
onclick="window.location='<c:url value="c/maps/"/>'"/>
2012-05-19 06:58:37 +02:00
</fieldset>
2009-06-07 20:59:43 +02:00
</form:form>
</div>
</div>
<div id="register">
<b>
<spring:message code="NOT_READY_A_USER"/>
</b>
<spring:message code="NOT_READY_A_USER_MESSAGE"/>
<a href="userRegistration">
2009-06-07 20:59:43 +02:00
<spring:message code="JOIN_NOW"/>
</a>
</div>