Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/addConference.jsp
2008-02-07 15:52:22 +00:00

23 lines
711 B
Plaintext

<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head></head>
<body>
<h4 class="title"><fmt:message key="conference.titleMenu" /></h4>
<form:form commandName="formConference" name="monForm">
<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>