57 lines
1.9 KiB
Plaintext
57 lines
1.9 KiB
Plaintext
<%@ include file="/WEB-INF/jsp/include.jsp"%>
|
|
<%@ page session="false" %>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
|
<title><fmt:message key="title"/></title>
|
|
<link rel="stylesheet" href="./stylesheets/base.css" type="text/css" />
|
|
</head>
|
|
<body>
|
|
|
|
<jsp:include page="/WEB-INF/jsp/header.jsp" />
|
|
|
|
|
|
<div class="mainBloc">
|
|
<div class="header"> </div>
|
|
<div class="content">
|
|
|
|
<jsp:include page="/WEB-INF/jsp/menu.jsp" />
|
|
<div id="main_content">
|
|
|
|
|
|
<h2 align="center"><fmt:message key="register.title" /></h2>
|
|
<form:form method="post" commandName="registerUser">
|
|
|
|
|
|
<form:label path="login"><fmt:message key="form.register.user.login" /></form:label> <form:input path="login"/> <br/><br />
|
|
<form:label path="email"><fmt:message key="form.register.user.email" /></form:label> <form:input path="email"/> <br/><br />
|
|
|
|
<form:label path="password"><fmt:message key="form.register.user.password" /></form:label> <form:password path="password"/> <br/><br />
|
|
<form:label path="passwordConfirm"><fmt:message key="form.register.user.passwordConfirm" /></form:label> <form:password path="passwordConfirm"/> <br/><br />
|
|
|
|
<form:label path="firstName"><fmt:message key="form.register.user.firstName" /></form:label> <form:input path="firstName"/> <br/><br />
|
|
<form:label path="lastName"><fmt:message key="form.register.user.lastName" /></form:label> <form:input path="lastName"/> <br/><br />
|
|
<form:label path="organization"><fmt:message key="form.register.user.organization" /></form:label> <form:input path="organization"/> <br/><br />
|
|
|
|
|
|
<input type="reset" value="<fmt:message key="button.reset" />"/>
|
|
<input type="submit" value="<fmt:message key="button.OK" />"/> <br/><br/>
|
|
|
|
</form:form>
|
|
|
|
|
|
|
|
<a href="<c:url value="main.htm"/>">Home</a>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
<div class="footer"> </div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|