67 lines
1.5 KiB
Plaintext
67 lines
1.5 KiB
Plaintext
<%@ include file="/WEB-INF/decorators/include.jsp"%>
|
|
|
|
<html>
|
|
<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>
|
|
|
|
<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">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2">Information</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td class="formLabel">Page's numbers</td>
|
|
<td><form:input path="pageNumber"/><div class="formError"><form:errors path="pageNumber" /></div></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> </td>
|
|
<td><input type="submit" name="_target1" value="Back" /> <input
|
|
type="submit" name="_target3" value="Next" /></td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</form:form>
|
|
|
|
<a href="<c:url value="main.htm"/>">Home</a>
|
|
|
|
</body>
|
|
</html> |