2012-06-30 07:26:21 +02:00
|
|
|
<%@page pageEncoding="UTF-8" %>
|
|
|
|
<%@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
|
|
|
|
2012-05-19 06:58:37 +02:00
|
|
|
<h1><spring:message code="USER_REGISTRATION"/></h1>
|
|
|
|
|
|
|
|
<p><spring:message code="REGISTRATION_TITLE_MSG"/></p>
|
2012-03-22 03:30:07 +01:00
|
|
|
<form:form method="post" commandName="user">
|
2012-05-19 06:58:37 +02:00
|
|
|
<fieldset>
|
|
|
|
<label for="email"><spring:message code="EMAIL"/></label>
|
|
|
|
<form:input path="email" id="email" type="email" required="required"/>
|
|
|
|
<form:errors path="email" cssClass="errorMsg"/>
|
|
|
|
|
|
|
|
<label for="firstname"><spring:message code="FIRSTNAME"/></label>
|
|
|
|
<form:input path="firstname" id="firstname" required="required"/>
|
|
|
|
<form:errors path="firstname" cssClass="errorMsg"/>
|
|
|
|
|
|
|
|
<label for="lastname"><spring:message code="LASTNAME"/></label>
|
|
|
|
<form:input path="lastname" id="lastname" required="required"/>
|
|
|
|
<form:errors path="lastname" cssClass="errorMsg"/>
|
|
|
|
|
|
|
|
<label for="password"><spring:message code="PASSWORD"/></label>
|
|
|
|
<form:password path="password" id="password" required="required"/>
|
|
|
|
<form:errors path="password" cssClass="errorMsg"/>
|
|
|
|
|
|
|
|
<label for="retypePassword"><spring:message code="RETYPE_PASSWORD"/></label>
|
|
|
|
<form:password path="retypePassword" id="retypePassword"/>
|
|
|
|
<form:errors path="retypePassword" cssClass="errorMsg"/>
|
|
|
|
|
|
|
|
<c:if test="${requestScope.captchaEnabled}">
|
|
|
|
${requestScope.captchaHtml}
|
2012-06-17 00:27:22 +02:00
|
|
|
<p>
|
|
|
|
<form:errors path="captcha" cssClass="errorMsg"/>
|
|
|
|
</p>
|
2012-05-19 06:58:37 +02:00
|
|
|
</c:if>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<p>
|
|
|
|
<spring:message code="TERM_OF_THE_SERVICE"/>
|
2012-07-15 07:56:49 +02:00
|
|
|
<spring:message code="WISEMAPPING_ACCOUNT_MESSAGE"/> <a href="c/termsOfUse" target="_blank"><spring:message
|
2012-06-17 00:27:22 +02:00
|
|
|
code="HERE"/></a>.
|
2012-05-19 06:58:37 +02:00
|
|
|
<spring:message code="REGISTRATION_CLICK_ADVICE"/>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
2012-06-17 00:27:22 +02:00
|
|
|
<input type="submit" value="<spring:message code="REGISTER"/>"
|
|
|
|
data-loading-text="<spring:message code="REGISTER"/> ..." id="submitButton"
|
2012-05-19 06:58:37 +02:00
|
|
|
class="btn btn-primary">
|
|
|
|
<input type="button" value="<spring:message code="CANCEL"/>"
|
2012-06-03 16:16:38 +02:00
|
|
|
onclick="window.location='c/<c:url value="maps/"/>'" class="btn">
|
2012-05-19 06:58:37 +02:00
|
|
|
</form:form>
|
2012-03-22 03:30:07 +01:00
|
|
|
</div>
|
2009-06-07 20:59:43 +02:00
|
|
|
</div>
|
2012-06-17 00:27:22 +02:00
|
|
|
|
|
|
|
|