68 lines
1.6 KiB
Plaintext
68 lines
1.6 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="1" />
|
|
<fmt:param value="5" />
|
|
</fmt:message>
|
|
|
|
<p class="formHelp">
|
|
<fmt:message key="conference.remainingTokens">
|
|
<fmt:param value="${currentUser.conferenceCreationTokens}"/>
|
|
</fmt:message>
|
|
</p>
|
|
|
|
<form:form commandName="formConference">
|
|
<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> </td>
|
|
<td><input type="submit" name="_target1"
|
|
value="Next" /></td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</form:form>
|
|
|
|
</body>
|
|
</html>
|