88 lines
1.9 KiB
Plaintext
88 lines
1.9 KiB
Plaintext
<%@ include file="/WEB-INF/decorators/include.jsp"%>
|
|
|
|
<html>
|
|
<head>
|
|
|
|
<script type='text/javascript' src='./javascripts/prototype.js'></script>
|
|
|
|
<script type='text/javascript'>
|
|
|
|
function verifNumber() {
|
|
var re = /^\d+$/;
|
|
|
|
if(!re.test($('pageNumber').value))
|
|
$('errorNumber').style.display = "";
|
|
else
|
|
$('errorNumber').style.display = "none";
|
|
}
|
|
|
|
</script>
|
|
|
|
</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 id="pageNumber" path="pageNumber" onchange="verifNumber();"/><div class="formError"><span id="errorNumber" style="display: none;">It should be a number</span></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>
|
|
|
|
<script type="text/javascript">
|
|
verifNumber();
|
|
</script>
|
|
|
|
<a href="<c:url value="main.htm"/>">Home</a>
|
|
|
|
</body>
|
|
</html> |