mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-23 14:37:56 +01:00
138 lines
3.4 KiB
Plaintext
138 lines
3.4 KiB
Plaintext
<%@ include file="/jsp/init.jsp" %>
|
|
|
|
<script type="text/javascript">
|
|
window.onload = function() {
|
|
var simpleButtonGenerator = RUZEE.ShadedBorder.create({ corner:8, border:1 });
|
|
simpleButtonGenerator.render('userRegistration');
|
|
|
|
$('submitButton').addEvent('click', displayLoading);
|
|
|
|
};
|
|
</script>
|
|
|
|
<div id="userRegistrationContent">
|
|
<div id="userRegistration" class="sb">
|
|
<h1>
|
|
<spring:message code="USER_REGISTRATION"/>
|
|
</h1>
|
|
|
|
<h2>
|
|
<spring:message code="REGISTRATION_TITLE_MSG"/>
|
|
<br/><br/>
|
|
<spring:message code="FIELD_REQUIRED_MSG"/>
|
|
</h2>
|
|
<form:form method="post" commandName="user">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td class="formLabel">
|
|
<span class="fieldRequired">*</span>
|
|
<spring:message code="EMAIL"/>
|
|
:
|
|
</td>
|
|
<td>
|
|
<form:input path="email" id="email"/>
|
|
<form:errors path="email" cssClass="errorMsg"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="formLabel">
|
|
<span class="fieldRequired">*</span>
|
|
<spring:message code="USERNAME"/>
|
|
:
|
|
</td>
|
|
<td>
|
|
<form:input path="username" id="username"/>
|
|
<form:errors path="username" cssClass="errorMsg"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="formLabel">
|
|
<span class="fieldRequired">*</span>
|
|
<spring:message code="FIRSTNAME"/>
|
|
:
|
|
</td>
|
|
<td>
|
|
<form:input path="firstname" id="firstname"/>
|
|
<form:errors path="firstname" cssClass="errorMsg"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="formLabel">
|
|
<span class="fieldRequired">*</span>
|
|
<spring:message code="LASTNAME"/>
|
|
:
|
|
</td>
|
|
<td>
|
|
<form:input path="lastname" id="lastname"/>
|
|
<form:errors path="lastname" cssClass="errorMsg"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="formLabel">
|
|
<span class="fieldRequired">*</span>
|
|
<spring:message code="PASSWORD"/>
|
|
:
|
|
</td>
|
|
<td>
|
|
<form:password path="password" id="password"/>
|
|
<form:errors path="password" cssClass="errorMsg"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="formLabel">
|
|
<span class="fieldRequired">*</span>
|
|
<spring:message code="RETYPE_PASSWORD"/>
|
|
:
|
|
</td>
|
|
<td>
|
|
<form:password path="retypePassword" id="retypePassword"/>
|
|
<form:errors path="retypePassword" cssClass="errorMsg"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="formLabel">
|
|
<span class="fieldRequired">*</span>
|
|
<spring:message code="WORD_VERIFICATION"/>
|
|
:
|
|
</td>
|
|
<td>
|
|
<p>
|
|
<spring:message code="TYPE_CHARACTER_BELOW"/>
|
|
</p>
|
|
<img src="captcha.htm"/><br/>
|
|
<input type="text" name="j_captcha_response"/><br/>
|
|
<form:errors path="captcha" cssClass="errorMsg"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="formLabel">
|
|
<spring:message code="TERM_OF_THE_SERVICE"/>
|
|
:
|
|
</td>
|
|
<td>
|
|
<spring:message code="WISEMAPPING_ACCOUNT_MESSAGE"/>
|
|
<a href="termsOfUse.htm">
|
|
<spring:message code="HERE"/>
|
|
</a>.<br/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="formLabel"> </td>
|
|
<td>
|
|
<spring:message code="REGISTRATION_CLICK_ADVICE"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td><input type="submit" value="<spring:message code="REGISTER"/>" id="submitButton" class="btn-primary">
|
|
<input type="button" value="<spring:message code="CANCEL"/>"
|
|
onclick="window.location='<c:url value="mymaps.htm"/>'" class="btn-primary">
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form:form>
|
|
</div>
|
|
</div>
|