2009-06-07 18:59:43 +00:00
|
|
|
<%@ include file="/jsp/init.jsp" %>
|
2012-04-15 08:00:51 -03:00
|
|
|
<div id="importContainer">
|
2009-06-07 18:59:43 +00:00
|
|
|
<form:form method="post" commandName="importMap" enctype="multipart/form-data">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td class="formLabel">
|
|
|
|
<span class="fieldRequired">*</span>
|
2012-04-15 08:00:51 -03:00
|
|
|
<spring:message code="NAME"/>:
|
2009-06-07 18:59:43 +00: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 08:00:51 -03:00
|
|
|
<spring:message code="DESCRIPTION"/>:
|
2009-06-07 18:59:43 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<form:input path="description" id="description" tabindex="2"/>
|
|
|
|
<form:errors path="description" cssClass="errorMsg"/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2012-04-15 08:00:51 -03:00
|
|
|
<tr>
|
2009-06-07 18:59:43 +00:00
|
|
|
<td class="formLabel">
|
|
|
|
<span class="fieldRequired">*</span>
|
2012-04-15 08:00:51 -03:00
|
|
|
<spring:message code="FREE_MIND_FILE"/>:
|
2009-06-07 18:59:43 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input type="file" name="mapFile"/>
|
2012-04-15 08:00:51 -03:00
|
|
|
<form:errors path="mapFile" cssClass="errorMsg"/>
|
2009-06-07 18:59:43 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td> </td>
|
|
|
|
<td>
|
2012-04-15 08:00:51 -03:00
|
|
|
<input type="submit" value="<spring:message code="IMPORT"/>" class="btn-primary">
|
|
|
|
<input type="button" value="<spring:message code="CANCEL"/>" class="btn-secondary"
|
|
|
|
onclick="window.location='/c/mymaps.htm'">
|
2009-06-07 18:59:43 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</form:form>
|
|
|
|
</div>
|