2012-04-05 00:01:51 -03:00
|
|
|
<%--@elvariable id="isHsql" type="boolean"--%>
|
2012-02-12 02:55:42 -03:00
|
|
|
|
2012-04-05 00:01:51 -03:00
|
|
|
<%@ include file="/jsp/init.jsp" %>
|
2012-02-12 02:55:42 -03:00
|
|
|
|
|
|
|
<div id="loginContent">
|
2012-05-19 01:19:55 -03:00
|
|
|
<div class="loginNews">
|
2012-02-12 02:55:42 -03:00
|
|
|
<h1>What is New: </h1>
|
|
|
|
<ul>
|
|
|
|
<li>Links Between Nodes</li>
|
|
|
|
<li>FreeMind 0.9 Update</li>
|
|
|
|
<li>Improved HTML 5.0 Support</li>
|
2012-05-19 01:19:55 -03:00
|
|
|
<li>Firefox 12 officially supported</li>
|
2012-02-12 02:55:42 -03:00
|
|
|
</ul>
|
|
|
|
</div>
|
2012-05-19 01:19:55 -03:00
|
|
|
|
|
|
|
<div id="login" class="fform">
|
2012-02-12 02:55:42 -03:00
|
|
|
<h1>
|
|
|
|
<spring:message code="SIGN_IN"/>
|
|
|
|
</h1>
|
|
|
|
|
2012-05-13 18:28:00 -03:00
|
|
|
<form action="<c:url value='/c/j_spring_security_check'/>" method="POST">
|
2012-05-19 01:19:55 -03:00
|
|
|
<fieldset>
|
|
|
|
<label for="email">
|
|
|
|
<spring:message code="EMAIL"/>
|
|
|
|
<input type='email' tabindex="1" id="email" name='j_username' required="required"/>
|
2012-02-12 02:55:42 -03:00
|
|
|
|
2012-05-19 01:19:55 -03:00
|
|
|
<label for="password"><spring:message code="PASSWORD"/></label>
|
|
|
|
<input type='password' tabindex="2" id="password" name='j_password' required="required"/>
|
|
|
|
|
2012-05-19 01:58:37 -03:00
|
|
|
<c:if test="${not empty param.login_error}">
|
|
|
|
<c:choose>
|
|
|
|
<c:when test="${param.login_error == 3}">
|
|
|
|
<div class="alert alert-error"><spring:message code="USER_INACTIVE"/></div>
|
|
|
|
</c:when>
|
|
|
|
<c:otherwise>
|
|
|
|
<div class="alert alert-error"><spring:message code="LOGIN_ERROR"/></div>
|
|
|
|
</c:otherwise>
|
|
|
|
</c:choose>
|
|
|
|
</c:if>
|
|
|
|
|
2012-05-19 01:19:55 -03:00
|
|
|
<div class="form-inline">
|
2012-05-19 01:58:37 -03:00
|
|
|
<input type="submit" class="btn btn-primary" value="<spring:message code="SIGN_IN"/>"
|
|
|
|
data-toggle="button">
|
2012-05-19 01:19:55 -03:00
|
|
|
<input type="checkbox" id="rememberme" name="_spring_security_remember_me"/>
|
|
|
|
<label for="rememberme"><spring:message code="REMEMBER_ME"/></label>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
2012-02-12 02:55:42 -03:00
|
|
|
</form>
|
2012-05-19 01:19:55 -03:00
|
|
|
<a href="<c:url value="/c/forgotPassword.htm"/>"><spring:message code="FORGOT_PASSWORD"/></a>
|
2012-02-12 02:55:42 -03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="register">
|
2012-04-05 14:18:13 -03:00
|
|
|
<b><spring:message code="NOT_READY_A_USER"/></b>
|
2012-02-12 02:55:42 -03:00
|
|
|
<spring:message code="NOT_READY_A_USER_MESSAGE"/>
|
2012-04-15 08:00:51 -03:00
|
|
|
<a href="c/userRegistration.htm">
|
2012-02-12 02:55:42 -03:00
|
|
|
<spring:message code="JOIN_NOW"/>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<c:if test="${isHsql== 'true'}">
|
2012-04-05 00:01:51 -03:00
|
|
|
<div style="padding:10px;background-color: #E0EFFF; border-radius: 5px 5px 5px 5px;border-style:solid;border-color:gray">
|
2012-04-05 14:18:13 -03:00
|
|
|
<img src="../images/info.png" style="margin:0 4px" alt="info">
|
|
|
|
<spring:message code="NO_PRODUCTION_DATABASE_CONFIGURED"/> <a
|
2012-04-05 00:01:51 -03:00
|
|
|
href="http://www.wisemapping.org/documentation/configu">here</a>.
|
|
|
|
</div>
|
2012-02-12 02:55:42 -03:00
|
|
|
</c:if>
|