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

@@ -5,49 +5,63 @@
<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="3" />
<fmt:param value="5" />
</fmt:message>
<p class="formHelp"><fmt:message key="conference.help.step3" /></p>
<form:form commandName="formConference" name="monForm">
Step (3/5) <br/>
Here you can add some constraints at your conference like the number of pages by articles or the type of file you want the authors to use.<br/>
<br/>
<div class="formErrors"><form:errors path="*" /></div>
<form:errors path="*" />
<table>
<thead>
<tr>
<th colspan="2">Information</th>
</tr>
</thead>
<tbody>
<tr>
<td class="formLabel">Page's numbers</td>
<td><form:input path="pageNumber" /></td>
</tr>
<tr>
<td class="formLabel">Authorized file types</td>
<td><form:checkbox path="typePDF" /> Tex/Latec <form:checkbox
path="typeLatec" /> Word <form:checkbox path="typeWord" />
OpenOffice <form:checkbox path="typeODT" /></td>
</tr>
</tbody>
<thead>
<tr>
<th colspan="2">Complementary Informations</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="2"><form:textarea path="sendInfo" cols="70"
rows="6" /></td>
</tr>
</tbody>
<tfoot>
<tr>
<td>&nbsp;</td>
<td><input type="submit" name="_target1" value="Back" /> <input
type="submit" name="_target3" value="Next" /></td>
</tr>
</tfoot>
</table>
</form:form>
<fieldset><legend>Information</legend>
Page's numbers <form:input path="pageNumber" />
<br /> <br />
PDF <form:checkbox path="typePDF"/>
Tex/Latec <form:checkbox path="typeLatec"/>
Word <form:checkbox path="typeWord"/>
OpenOffice <form:checkbox path="typeODT"/>
</fieldset>
<br />
<hr />
<br />
Complementary Information : <form:textarea path="sendInfo" />
<br />
<br />
<input type="submit" align="middle" name="_target1" value="Back">
<input type="submit" align="middle" name="_target3" value="Next" />
</form:form> <br />
<a href="<c:url value="main.htm"/>">Home</a>
</body>