34 lines
891 B
Plaintext
34 lines
891 B
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>
|
|
|
|
<form:form commandName="formConference" name="monForm">
|
|
Step (1/5) <br/><br/>
|
|
|
|
<fmt:message key="conference.title" /> <form:input path="title"/> <form:errors path="title" /> <br/><br />
|
|
<fmt:message key="conference.description" /> <form:textarea path="description" /> <form:errors path="description" /> <br/><br />
|
|
<fmt:message key="conference.otherInformations" /> <form:textarea path="otherInformations" /> <br/><br />
|
|
|
|
<input type="submit" align="middle" name="_target1" value="Next" />
|
|
|
|
</form:form>
|
|
|
|
<br />
|
|
<a href="<c:url value="main.htm"/>">Home</a>
|
|
|
|
</body>
|
|
</html>
|