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>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<div class="fform">
|
|
|
|
<h1>
|
|
|
|
<spring:message code="FORGOT_PASSWORD"/>
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
<p><spring:message code="FORGOT_PASSWORD_MESSAGE"/></p>
|
|
|
|
|
|
|
|
<form:form method="post" commandName="resetPassword">
|
|
|
|
<fieldset>
|
|
|
|
<label for="email"><spring:message code="EMAIL"/></label>
|
|
|
|
<input id="email" type="email" required="required" name="email"/>
|
|
|
|
|
2012-11-18 17:38:17 +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"/>"/>
|
2012-06-16 20:59:59 +02:00
|
|
|
<input type="button" value="<spring:message code="CANCEL"/>" class="btn"
|
|
|
|
onclick="window.location='<c:url value="c/maps/"/>'"/>
|
|
|
|
</fieldset>
|
|
|
|
</form:form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<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-18 17:38:17 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<c:if test="${requestScope['google.ads.enabled']}">
|
|
|
|
<div class="row" style="text-align: center">
|
|
|
|
<script type="text/javascript"><!--
|
|
|
|
google_ad_client = "ca-pub-7564778578019285";
|
|
|
|
/* WiseMapping Forgot Password */
|
|
|
|
google_ad_slot = "8673453229";
|
|
|
|
google_ad_width = 728;
|
|
|
|
google_ad_height = 90;
|
|
|
|
//-->
|
|
|
|
</script>
|
|
|
|
<script type="text/javascript"
|
|
|
|
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
|
|
|
|
</script>
|
|
|
|
</div>
|
|
|
|
</c:if>
|