Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/addConference2.jsp
2008-02-25 23:22:25 +00:00

83 lines
2.0 KiB
Plaintext

<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head>
<link rel="stylesheet" href="./stylesheets/calendar.css" type="text/css" />
<script src="./javascripts/calendar.js"></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="2" />
<fmt:param value="5" />
</fmt:message>
<p class="formHelp"><fmt:message key="conference.help.step2" /></p>
<p class="formHelp"><fmt:message key="conference.help.step2datelimit" /></p>
<form:form commandName="formConference">
<table class="form">
<tbody>
<tr>
<td class="formLabel"><fmt:message key="conference2.article" />
</td>
<td><form:input onfocus="ds_sh(this);" path="dateArticle"
cssStyle="cursor: text" />
<div class="formError">
<form:errors path="dateArticle" />
</div>
</td>
</tr>
<tr>
<td class="formLabel"><fmt:message key="conference2.evaluation" />
</td>
<td><form:input onfocus="ds_sh(this);" path="dateEvaluation"
cssStyle="cursor: text" />
<div class="formError">
<form:errors path="dateEvaluation" />
</div>
</td>
</tr>
<tr>
<td class="formLabel"><fmt:message key="conference2.start" />
</td>
<td><form:input onfocus="ds_sh(this);" path="dateStart"
cssStyle="cursor: text" />
<div class="formError">
<form:errors path="dateStart" />
</div>
</td>
</tr>
<tr>
<td class="formLabel"><fmt:message key="conference2.end" /></td>
<td><form:input onfocus="ds_sh(this);" path="dateEnd"
cssStyle="cursor: text" />
<div class="formError">
<form:errors path="dateEnd" />
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>&nbsp;</td>
<td><input type="submit" name="_target0" value="Back" /> <input
type="submit" name="_target2" value="Next" /></td>
</tr>
</tfoot>
</table>
</form:form>
</body>
</html>