wisemapping-open-source/wise-webapp/src/main/webapp/jsp/mindmapImport.jsp

44 lines
1.6 KiB
Plaintext
Raw Normal View History

2009-06-07 20:59:43 +02:00
<%@ include file="/jsp/init.jsp" %>
2012-04-15 13:00:51 +02:00
<div id="importContainer">
2009-06-07 20:59:43 +02:00
<form:form method="post" commandName="importMap" enctype="multipart/form-data">
<table>
<tr>
<td class="formLabel">
2012-04-15 13:00:51 +02:00
<spring:message code="NAME"/>:
2009-06-07 20:59:43 +02:00
</td>
<td>
<form:input path="title" id="title" tabindex="1"/>
<form:errors path="title" cssClass="errorMsg"/>
</td>
</tr>
<tr>
<td class="formLabel">
2012-04-15 13:00:51 +02:00
<spring:message code="DESCRIPTION"/>:
2009-06-07 20:59:43 +02:00
</td>
<td>
<form:input path="description" id="description" tabindex="2"/>
<form:errors path="description" cssClass="errorMsg"/>
</td>
</tr>
2012-04-15 13:00:51 +02:00
<tr>
2009-06-07 20:59:43 +02:00
<td class="formLabel">
<span class="fieldRequired">*</span>
2012-04-15 13:00:51 +02:00
<spring:message code="FREE_MIND_FILE"/>:
2009-06-07 20:59:43 +02:00
</td>
<td>
<input type="file" name="mapFile"/>
2012-04-15 13:00:51 +02:00
<form:errors path="mapFile" cssClass="errorMsg"/>
2009-06-07 20:59:43 +02:00
</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>
2012-05-24 01:05:16 +02:00
<input type="submit" value="<spring:message code="IMPORT"/>" class="btn btn-primary">
<input type="button" value="<spring:message code="CANCEL"/>" class="btn"
2012-04-15 13:00:51 +02:00
onclick="window.location='/c/mymaps.htm'">
2009-06-07 20:59:43 +02:00
</td>
</tr>
</table>
</form:form>
</div>