Modifications de choose preference et début d'écran du CU d'inscription
This commit is contained in:
@@ -21,10 +21,13 @@
|
||||
<div id="main_content">
|
||||
|
||||
<h2 align="center"><fmt:message key="preference.title" /></h2>
|
||||
|
||||
|
||||
<c:if test="${message}">
|
||||
<fmt:message key="${message}"/>
|
||||
</c:if>
|
||||
|
||||
<form:form method="post" commandName="choosePreference">
|
||||
<c:if test="${not empty articleList}">
|
||||
<c:if test="${not empty articleList}">
|
||||
<table>
|
||||
<c:forEach items="${articleList}" var="article" varStatus="i">
|
||||
|
||||
|
||||
@@ -38,13 +38,13 @@
|
||||
|
||||
<input name="idArticle" type="hidden" value="${article.id}" />
|
||||
|
||||
<select path="member">
|
||||
<form:select path="member">
|
||||
<c:forEach var="m" items="${members}">
|
||||
<option value="${m.login}">
|
||||
${m.firstName} ${m.lastName}(0)
|
||||
</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</form:select>
|
||||
|
||||
<input type="submit" value="add" />
|
||||
</form:form>
|
||||
|
||||
56
YACOSWeb/WebContent/WEB-INF/jsp/registerUser.jsp
Normal file
56
YACOSWeb/WebContent/WEB-INF/jsp/registerUser.jsp
Normal file
@@ -0,0 +1,56 @@
|
||||
<%@ 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>
|
||||
Reference in New Issue
Block a user