Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/addConference.jsp
Frederic Debuire e71442720f Traduction du calendrier.
Ajout d'information pour la création de conf.
2008-02-11 16:47:18 +00:00

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>