40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
<%@ include file="/WEB-INF/jsp/include.jsp"%>
|
|
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<title><fmt:message key="title" /></title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h2 align="center"><fmt:message key="submission.title" /></h2>
|
|
|
|
<form:form method="post" commandName="submissionArticle">
|
|
|
|
|
|
<fmt:message key="form.submission.article.title" /> <form:input path="title"/> <br/><br />
|
|
<fmt:message key="form.submission.article.theme" /> <form:input path="theme"/> <br/><br />
|
|
|
|
<hr /> <br />
|
|
|
|
<fmt:message key="form.submission.listauthor" /> <br /><br />
|
|
<fmt:message key="form.submission.mainauthor" /> <form:input path="mainauthor"/> <input type="submit" name="addMain" value=<fmt:message key="button.add" />> <br/><br />
|
|
<fmt:message key="form.submission.secondaryauthor" /> <form:input path="secondaryauthor"/> <input type="submit" name="addSecondary" value=<fmt:message key="button.add" />> <br/><br />
|
|
|
|
<textarea name="AreaAuthor" rows=10 cols=40></textarea> <br />
|
|
|
|
<hr /> <br />
|
|
|
|
<input type="submit" value=<fmt:message key="button.cancel" />>
|
|
<input type="submit" value=<fmt:message key="button.OK" />> <br/><br/>
|
|
|
|
</form:form>
|
|
|
|
|
|
|
|
<a href="<c:url value="main.htm"/>">Home</a>
|
|
</body>
|
|
|
|
</html> |