UC Adding conference : structure (jsp/controller/modif servlet xml), but no field in form, working

This commit is contained in:
Nicolas Michard
2008-01-09 23:24:33 +00:00
parent da72987c39
commit edd2e5d8e5
6 changed files with 121 additions and 9 deletions

View File

@@ -0,0 +1,45 @@
<%@ include file="/WEB-INF/jsp/include.jsp"%>
<%@ page session="false" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title><fmt:message key="title"/></title>
<link rel="stylesheet" href="./stylesheets/base.css" type="text/css" />
</head>
<body>
<jsp:include page="/WEB-INF/jsp/header.jsp" />
<div class="mainBloc">
<div class="header">&nbsp;</div>
<div class="content">
<jsp:include page="/WEB-INF/jsp/menu.jsp" />
<div id="main_content">
<h2 align="center">Add new conference</h2>
<form:form commandName="formConference">
Formulaire ici
<input type="submit" value="<fmt:message key="button.OK" />"/> <br/><br/>
</form:form>
<a href="<c:url value="main.htm"/>">Home</a>
</div>
</div>
<div class="footer">&nbsp;</div>
</div>
</body>
</html>