2012-06-30 07:26:21 +02:00
|
|
|
<%@page pageEncoding="UTF-8" %>
|
|
|
|
<%@include file="/jsp/init.jsp" %>
|
|
|
|
|
2012-06-16 20:59:59 +02:00
|
|
|
<script type="text/javascript" language="javascript">
|
2012-11-18 17:38:17 +01:00
|
|
|
$(function () {
|
|
|
|
$('.btn-primary').click(function () {
|
2012-06-16 20:59:59 +02:00
|
|
|
$(this).button("loading");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2014-02-10 01:58:23 +01:00
|
|
|
<h1>
|
|
|
|
<spring:message code="FORGOT_PASSWORD"/>
|
|
|
|
</h1>
|
2012-06-16 20:59:59 +02:00
|
|
|
|
2014-02-10 01:58:23 +01:00
|
|
|
<p><spring:message code="FORGOT_PASSWORD_MESSAGE"/></p>
|
2012-06-16 20:59:59 +02:00
|
|
|
|
2020-11-07 06:35:54 +01:00
|
|
|
<form:form method="post" modelAttribute="resetPassword" class="form-horizontal">
|
2014-02-10 01:58:23 +01:00
|
|
|
<label for="email" class="col-md-2 control-label"><spring:message code="EMAIL"/>: </label>
|
|
|
|
<div class="col-md-5">
|
|
|
|
<input id="email" type="email" required="required" name="email" class="form-control"/>
|
2012-06-16 20:59:59 +02:00
|
|
|
</div>
|
2014-02-10 01:58:23 +01:00
|
|
|
<input type="submit" value="<spring:message code="SEND_ME_A_NEW_PASSWORD"/>" class="btn btn-primary"
|
|
|
|
data-loading-text="<spring:message code="SENDING"/>"/>
|
|
|
|
<input type="button" value="<spring:message code="CANCEL"/>" class="btn"
|
2018-09-15 10:25:14 +02:00
|
|
|
onclick="window.location='/c/maps/'"/>
|
2014-02-10 01:58:23 +01:00
|
|
|
</form:form>
|
2012-06-16 20:59:59 +02:00
|
|
|
|
|
|
|
<div id="register">
|
|
|
|
<b>
|
|
|
|
<spring:message code="NOT_READY_A_USER"/>
|
|
|
|
</b>
|
|
|
|
<spring:message code="NOT_READY_A_USER_MESSAGE"/>
|
2012-06-17 00:27:22 +02:00
|
|
|
<a href="c/user/registration">
|
2012-06-16 20:59:59 +02:00
|
|
|
<spring:message code="JOIN_NOW"/>
|
|
|
|
</a>
|
2012-11-20 01:19:30 +01:00
|
|
|
</div>
|