Improve import layout.

This commit is contained in:
Paulo Gustavo Veiga 2012-05-24 00:35:17 -03:00
parent fc1ee1ff2e
commit a832d72bac
4 changed files with 44 additions and 69 deletions

View File

@ -163,7 +163,7 @@
<definition name="importMap" extends="pageTemplate"> <definition name="importMap" extends="pageTemplate">
<put name="title" value="IMPORT_MINDMAP"/> <put name="title" value="IMPORT_MINDMAP"/>
<put name="details" value="IMPORT_MINDMAP_INFO"/> <put name="details" value="IMPORT_MINDMAP_INFO"/>
<put name="body" value="/jsp/mindmapImportError.jsp"/> <put name="body" value="/jsp/mindmapImport.jsp"/>
</definition> </definition>
<definition name="activationAccountConfirmation" extends="pageTemplate"> <definition name="activationAccountConfirmation" extends="pageTemplate">

View File

@ -20,30 +20,29 @@
<form action="<c:url value='/c/j_spring_security_check'/>" method="POST"> <form action="<c:url value='/c/j_spring_security_check'/>" method="POST">
<fieldset> <fieldset>
<label for="email"> <label for="email"><spring:message code="EMAIL"/></label>
<spring:message code="EMAIL"/> <input type='email' tabindex="1" id="email" name='j_username' required="required"/>
<input type='email' tabindex="1" id="email" name='j_username' required="required"/>
<label for="password"><spring:message code="PASSWORD"/></label> <label for="password"><spring:message code="PASSWORD"/></label>
<input type='password' tabindex="2" id="password" name='j_password' required="required"/> <input type='password' tabindex="2" id="password" name='j_password' required="required"/>
<c:if test="${not empty param.login_error}"> <c:if test="${not empty param.login_error}">
<c:choose> <c:choose>
<c:when test="${param.login_error == 3}"> <c:when test="${param.login_error == 3}">
<div class="alert alert-error"><spring:message code="USER_INACTIVE"/></div> <div class="alert alert-error"><spring:message code="USER_INACTIVE"/></div>
</c:when> </c:when>
<c:otherwise> <c:otherwise>
<div class="alert alert-error"><spring:message code="LOGIN_ERROR"/></div> <div class="alert alert-error"><spring:message code="LOGIN_ERROR"/></div>
</c:otherwise> </c:otherwise>
</c:choose> </c:choose>
</c:if> </c:if>
<div class="form-inline"> <div class="form-inline">
<input type="submit" class="btn btn-primary" value="<spring:message code="SIGN_IN"/>" <input type="submit" class="btn btn-primary" value="<spring:message code="SIGN_IN"/>"
data-toggle="button">&nbsp;&nbsp;&nbsp; data-toggle="button">&nbsp;&nbsp;&nbsp;
<input type="checkbox" id="rememberme" name="_spring_security_remember_me"/> <input type="checkbox" id="rememberme" name="_spring_security_remember_me"/>
<label for="rememberme"><spring:message code="REMEMBER_ME"/></label> <label for="rememberme"><spring:message code="REMEMBER_ME"/></label>
</div> </div>
</fieldset> </fieldset>
</form> </form>
<a href="<c:url value="/c/forgotPassword.htm"/>"><spring:message code="FORGOT_PASSWORD"/></a> <a href="<c:url value="/c/forgotPassword.htm"/>"><spring:message code="FORGOT_PASSWORD"/></a>

View File

@ -1,43 +1,29 @@
<%@ include file="/jsp/init.jsp" %> <%@ include file="/jsp/init.jsp" %>
<div id="importContainer">
<div class="fform">
<h1>
<spring:message code="${requestScope.title}"/>
</h1>
<p><spring:message code="${requestScope.details}"/></p>
<form:form method="post" commandName="importMap" enctype="multipart/form-data"> <form:form method="post" commandName="importMap" enctype="multipart/form-data">
<table> <fieldset>
<tr> <label for="title"><spring:message code="NAME"/></label>
<td class="formLabel"> <form:input path="title" id="title" tabindex="1" required="required"/>
<spring:message code="NAME"/>: <form:errors path="title" cssClass="errorMsg"/>
</td>
<td> <label for="title"><spring:message code="DESCRIPTION"/></label>
<form:input path="title" id="title" tabindex="1"/> <form:input path="description" id="description" tabindex="2"/>
<form:errors path="title" cssClass="errorMsg"/> <form:errors path="description" cssClass="errorMsg"/>
</td>
</tr> <label for="mapFile"><spring:message code="FREE_MIND_FILE"/></label>
<tr> <input type="file" name="mapFile" id="mapFile"/>
<td class="formLabel"> <form:errors path="mapFile" cssClass="errorMsg"/>
<spring:message code="DESCRIPTION"/>: </fieldset>
</td>
<td> <input type="submit" value="<spring:message code="IMPORT"/>" class="btn btn-primary"/>
<form:input path="description" id="description" tabindex="2"/> <input type="button" value="<spring:message code="CANCEL"/>" class="btn"
<form:errors path="description" cssClass="errorMsg"/> onclick="window.location='/c/mymaps.htm'">
</td>
</tr>
<tr>
<td class="formLabel">
<span class="fieldRequired">*</span>
<spring:message code="FREE_MIND_FILE"/>:
</td>
<td>
<input type="file" name="mapFile"/>
<form:errors path="mapFile" cssClass="errorMsg"/>
</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>
<input type="submit" value="<spring:message code="IMPORT"/>" class="btn btn-primary">
<input type="button" value="<spring:message code="CANCEL"/>" class="btn"
onclick="window.location='/c/mymaps.htm'">
</td>
</tr>
</table>
</form:form> </form:form>
</div> </div>

View File

@ -1,10 +0,0 @@
<%@ include file="/jsp/init.jsp" %>
<h1>
<spring:message code="${requestScope.title}"/>
</h1>
<p style="font-weight:bold;">
<spring:message code="${requestScope.details}"/>
</p>
<jsp:include page="/jsp/mindmapImport.jsp"/>