Modification CSS formulaire d'ajout de conference

This commit is contained in:
2008-02-15 18:21:56 +00:00
parent d370d2d7b8
commit 38bd59d2a6
7 changed files with 367 additions and 244 deletions

View File

@@ -4,27 +4,58 @@
<head></head>
<body>
<h4 class="title">
<c:choose>
<c:when test="${param['action'] eq 'modify'}">
<fmt:message key="conference.titleModify" />
</c:when>
<c:otherwise>
<fmt:message key="conference.titleAdd" />
</c:otherwise>
</c:choose>
</h4>
<h4 class="title"><c:choose>
<c:when test="${param['action'] eq 'modify'}">
<fmt:message key="conference.titleModify" />
</c:when>
<c:otherwise>
<fmt:message key="conference.titleAdd" />
</c:otherwise>
</c:choose></h4>
<fmt:message key="step">
<fmt:param value="1" />
<fmt:param value="5" />
</fmt:message>
<form:form commandName="formConference" name="monForm">
Step (1/5) <br/><br/>
<fmt:message key="conference.title" /> <form:input path="title"/> <form:errors path="title" /> <br/><br />
<fmt:message key="conference.description" /> <form:textarea path="description" /> <form:errors path="description" /> <br/><br />
<fmt:message key="conference.otherInformations" /> <form:textarea path="otherInformations" /> <br/><br />
<input type="submit" align="middle" name="_target1" value="Next" />
</form:form>
<table class="form">
<tbody>
<tr>
<td class="formLabel"><form:label path="title">
<fmt:message key="conference.title" />
</form:label></td>
<td><form:input path="title" size="50" />
<div class="formError"><form:errors path="title" /></div>
</td>
</tr>
<tr>
<td class="formLabel"><form:label path="description">
<fmt:message key="conference.description" />
</form:label></td>
<td><form:textarea path="description" cols="60" rows="10" />
<div class="formError"><form:errors path="description" /></div>
</td>
</tr>
<tr>
<td class="formLabel"><form:label path="otherInformations">
<fmt:message key="conference.otherInformations" />
</form:label></td>
<td><form:textarea path="otherInformations" cols="60" rows="10" />
<div class="formError"><form:errors path="otherInformations" />
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>&nbsp;</td>
<td><input type="submit" align="middle" name="_target1"
value="Next" /></td>
</tr>
</tfoot>
</table>
</form:form>
<br />
<a href="<c:url value="main.htm"/>">Home</a>