mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-21 21:57:56 +01:00
Fix no closed div element on account settings.
This commit is contained in:
parent
ec9d0470d8
commit
d5f658677e
@ -8,62 +8,78 @@
|
||||
<li><a href="#changePasswordPanel" data-toggle="pill"><spring:message code="SECURITY"/></a></li>
|
||||
</c:if>
|
||||
<li><a href="#languagePanel" data-toggle="pill"><spring:message code="LANGUAGE"/></a></li>
|
||||
<li><a href="#deleteAccountPanel" data-toggle="pill"><spring:message code="DELETE__ACCOUNT"/></a></li>
|
||||
<c:if test="${principal.databaseSchema}">
|
||||
<li><a href="#deleteAccountPanel" data-toggle="pill"><spring:message code="DELETE__ACCOUNT"/></a></li>
|
||||
</c:if>
|
||||
</ul>
|
||||
|
||||
<div class="tab-content" style="padding-top:15px;">
|
||||
<div class="tab-pane fade ${principal.databaseSchema?'active in':''}" id="changeUserPanel">
|
||||
<div id="changeInfoMsg" class="alert">
|
||||
</div>
|
||||
<div id="changeInfoMsg" class="alert"></div>
|
||||
<form action="#" method="POST" id="changeUserForm" class="form-horizontal">
|
||||
<fieldset>
|
||||
<div class="form-group">
|
||||
<label for="email" class="col-md-3 control-label"><strong><spring:message code="EMAIL"/>:</strong></label>
|
||||
<label for="email" class="col-md-3 control-label"><strong><spring:message
|
||||
code="EMAIL"/>:</strong></label>
|
||||
|
||||
<div class="col-md-8">
|
||||
<input type="text" name="password" id="email" required="required" class="form-control" readonly="readonly" value="${user.email}"/>
|
||||
<input type="text" name="password" id="email" required="required" class="form-control"
|
||||
readonly="readonly" value="${user.email}"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="firstname" class="col-md-3 control-label"><strong><spring:message code="FIRSTNAME"/>:</strong></label>
|
||||
|
||||
<div class="col-md-8">
|
||||
<input type="text" name="firstname" id="firstname" required="required" class="form-control" value="${user.firstname}"/>
|
||||
</div>
|
||||
<input type="text" name="firstname" id="firstname" required="required" class="form-control"
|
||||
value="${user.firstname}"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="lastname" class="col-md-3 control-label"><strong><spring:message code="LASTNAME"/>:</strong></label>
|
||||
<label for="lastname" class="col-md-3 control-label"><strong><spring:message
|
||||
code="LASTNAME"/>:</strong></label>
|
||||
|
||||
<div class="col-md-8">
|
||||
<input type="text" name="lastname" id="lastname" required="required" class="form-control" value="${user.lastname}"/>
|
||||
<input type="text" name="lastname" id="lastname" required="required" class="form-control"
|
||||
value="${user.lastname}"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-md-offset-8 col-md-2">
|
||||
<input type="submit" id="changeUserInfoBtn" class="btn btn-primary" class="form-control" value="<spring:message code="SAVE_CHANGES"/>"/>
|
||||
<div>
|
||||
<input type="submit" id="changeUserInfoBtn" class="btn btn-primary" class="form-control"
|
||||
value="<spring:message code="SAVE_CHANGES"/>"/>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
<div class="tab-pane fade" id="changePasswordPanel">
|
||||
<div id="changePasswordMsg" class="alert">
|
||||
</div>
|
||||
<form action="#" method="POST" id="changePasswordForm" class="form-horizontal">
|
||||
<form action="#" method="POST" id="changePasswordForm" class="form-horizontal">
|
||||
<fieldset>
|
||||
<div class="form-group">
|
||||
<label for="password" class="col-md-3 control-label"><strong><spring:message code="NEW_PASSWORD"/>:</strong></label>
|
||||
<label for="password" class="col-md-3 control-label"><strong><spring:message
|
||||
code="NEW_PASSWORD"/>:</strong></label>
|
||||
|
||||
<div class="col-md-8">
|
||||
<input type="password" name="password" id="password" required="required" class="form-control"/>
|
||||
<input type="password" name="password" id="password" required="required"
|
||||
class="form-control"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="repassword" class="col-md-3 control-label"><strong><spring:message code="CONFIRM_NEW_PASSWORD"/>:</strong></label>
|
||||
<label for="repassword" class="col-md-3 control-label"><strong><spring:message
|
||||
code="CONFIRM_NEW_PASSWORD"/>:</strong></label>
|
||||
|
||||
<div class="col-md-8">
|
||||
<input type="password" name="password" id="repassword" required="required" class="form-control"/>
|
||||
<input type="password" name="password" id="repassword" required="required"
|
||||
class="form-control"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-md-offset-8 col-md-2">
|
||||
<input type="submit" id="changePasswordBtn" class="btn btn-primary" value="<spring:message code="CHANGE_PASSWORD"/>"/>
|
||||
<input type="submit" id="changePasswordBtn" class="btn btn-primary"
|
||||
value="<spring:message code="CHANGE_PASSWORD"/>"/>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
@ -74,49 +90,56 @@
|
||||
</div>
|
||||
<form action="#" method="POST" id="languageForm" class="form-horizontal">
|
||||
<div class="form-group">
|
||||
<label for="language" class="col-md-3 control-label"><strong><spring:message code="LANGUAGE"/>:</strong></label>
|
||||
<label for="language" class="col-md-3 control-label"><strong><spring:message
|
||||
code="LANGUAGE"/>:</strong></label>
|
||||
<div class="col-md-8">
|
||||
<select name="language" id="language" class="form-control">
|
||||
<option value="en">English</option>
|
||||
<option value="es" <c:if test="${user.locale=='es'}">selected="selected" </c:if>>Spanish -
|
||||
español
|
||||
</option>
|
||||
<option value="fr" <c:if test="${user.locale=='fr'}">selected="selected" </c:if>>French -
|
||||
français
|
||||
</option>
|
||||
<option value="de" <c:if test="${user.locale=='de'}">selected="selected" </c:if>>German -
|
||||
Deutsch
|
||||
</option>
|
||||
<option value="it" <c:if test="${user.locale=='it'}">selected="selected" </c:if>>Italian -
|
||||
italiano
|
||||
</option>
|
||||
<option value="pt_BR" <c:if test="${user.locale=='pt_BR'}">selected="selected" </c:if>>
|
||||
Portuguese
|
||||
(Brazil) - português (Brasil)
|
||||
</option>
|
||||
<option value="zh_CN" <c:if test="${user.locale=='zh_CN'}">selected="selected" </c:if>>Chinese
|
||||
(Simplified Han) - 中文(简体中文)
|
||||
</option>
|
||||
<option value="zh_TW" <c:if test="${user.locale=='zh_TW'}">selected="selected" </c:if>>Chinese
|
||||
(Traditional Han) - 中文 (繁體中文)
|
||||
</option>
|
||||
<option value="ca" <c:if test="${user.locale=='ca'}">selected="selected" </c:if>>Catalan -
|
||||
català
|
||||
</option>
|
||||
</select></div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-md-offset-8 col-md-2">
|
||||
<input type="submit" id="changeLanguageBtn" class="btn btn-primary" value="<spring:message code="CHANGE_LANGUAGE"/>"/>
|
||||
</div>
|
||||
<select name="language" id="language" class="form-control">
|
||||
<option value="en">English</option>
|
||||
<option value="es" <c:if test="${user.locale=='es'}">selected="selected" </c:if>>Spanish -
|
||||
español
|
||||
</option>
|
||||
<option value="fr" <c:if test="${user.locale=='fr'}">selected="selected" </c:if>>French -
|
||||
français
|
||||
</option>
|
||||
<option value="de" <c:if test="${user.locale=='de'}">selected="selected" </c:if>>German -
|
||||
Deutsch
|
||||
</option>
|
||||
<option value="it" <c:if test="${user.locale=='it'}">selected="selected" </c:if>>Italian -
|
||||
italiano
|
||||
</option>
|
||||
<option value="pt_BR" <c:if test="${user.locale=='pt_BR'}">selected="selected" </c:if>>
|
||||
Portuguese
|
||||
(Brazil) - português (Brasil)
|
||||
</option>
|
||||
<option value="zh_CN" <c:if test="${user.locale=='zh_CN'}">selected="selected" </c:if>>
|
||||
Chinese
|
||||
(Simplified Han) - 中文(简体中文)
|
||||
</option>
|
||||
<option value="zh_TW" <c:if test="${user.locale=='zh_TW'}">selected="selected" </c:if>>
|
||||
Chinese
|
||||
(Traditional Han) - 中文 (繁體中文)
|
||||
</option>
|
||||
<option value="ca" <c:if test="${user.locale=='ca'}">selected="selected" </c:if>>Catalan -
|
||||
català
|
||||
</option>
|
||||
</select></div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<div class="col-md-offset-8 col-md-2">
|
||||
<input type="submit" id="changeLanguageBtn" class="btn btn-primary"
|
||||
value="<spring:message code="CHANGE_LANGUAGE"/>"/>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="deleteAccountPanel">
|
||||
<div id="deleteAccountMsg" class="alert alert-danger" style="display: block;"><spring:message code="WARNING_DELETE_USER"/></div>
|
||||
<div id="deleteAccountMsg" class="alert alert-danger" style="display: block;"><spring:message
|
||||
code="WARNING_DELETE_USER"/></div>
|
||||
<form action="#" method="POST" id="deleteAccountForm">
|
||||
<div class="form-group" style="text-align:right">
|
||||
<input type="checkbox" name="confirmAccountDelete" id="accountMarkedForDelete" required="required"/> <input type="submit" id="deleteAccountBtn" class="btn btn-primary" value="<spring:message code="DELETE__ACCOUNT"/>"/>
|
||||
<input type="checkbox" name="confirmAccountDelete" id="accountMarkedForDelete" required="required"/>
|
||||
<input type="submit" id="deleteAccountBtn" class="btn btn-primary"
|
||||
value="<spring:message code="DELETE__ACCOUNT"/>"/>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
@ -157,11 +180,11 @@
|
||||
postChange(
|
||||
"c/restful/account/password",
|
||||
inputVal,
|
||||
function() {
|
||||
function () {
|
||||
changePasswordMsg.removeClass('alert-danger').addClass('alert-info').show();
|
||||
changePasswordMsg.text('<spring:message code="CHANGE_PASSWORD_SUCCESS"/>');
|
||||
},
|
||||
function(textStatus) {
|
||||
function (textStatus) {
|
||||
changePasswordMsg.removeClass('alert-info').addClass('alert-danger').show();
|
||||
changePasswordMsg.text(textStatus);
|
||||
}
|
||||
@ -177,12 +200,12 @@
|
||||
postChange(
|
||||
"c/restful/account/firstname",
|
||||
firstname,
|
||||
function() {
|
||||
function () {
|
||||
var changeInfoMsg = $('#changeInfoMsg');
|
||||
changeInfoMsg.removeClass('alert-error').addClass('alert-info').show();
|
||||
changeInfoMsg.text('<spring:message code="INFO_UPDATE_SUCCESS"/>');
|
||||
},
|
||||
function(textStatus) {
|
||||
function (textStatus) {
|
||||
changeInfoMsg.removeClass('alert-info').addClass('alert-danger').show();
|
||||
changeInfoMsg.text(textStatus);
|
||||
}
|
||||
@ -190,11 +213,11 @@
|
||||
postChange(
|
||||
"c/restful/account/lastname",
|
||||
lastname,
|
||||
function() {
|
||||
function () {
|
||||
changeInfoMsg.removeClass('alert-danger').addClass('alert-info').show();
|
||||
changeInfoMsg.text('<spring:message code="INFO_UPDATE_SUCCESS"/>');
|
||||
},
|
||||
function(textStatus) {
|
||||
function (textStatus) {
|
||||
changeInfoMsg.removeClass('alert-info').addClass('alert-danger').show();
|
||||
changeInfoMsg.text(textStatus);
|
||||
}
|
||||
@ -209,11 +232,11 @@
|
||||
postChange(
|
||||
"c/restful/account/locale",
|
||||
locale,
|
||||
function() {
|
||||
function () {
|
||||
languageMsg.removeClass('alert-danger').addClass('alert-info').show();
|
||||
languageMsg.text('<spring:message code="INFO_UPDATE_SUCCESS"/>');
|
||||
},
|
||||
function(textStatus) {
|
||||
function (textStatus) {
|
||||
languageMsg.removeClass('alert-info').addClass('alert-danger').show();
|
||||
languageMsg.text(textStatus);
|
||||
}
|
||||
@ -226,10 +249,10 @@
|
||||
postChange(
|
||||
"c/restful/account",
|
||||
locale,
|
||||
function() {
|
||||
function () {
|
||||
window.location.href = "/c/logout"
|
||||
},
|
||||
function(textStatus) {
|
||||
function (textStatus) {
|
||||
var deleteAccountMsg = $('#deleteAccountMsg');
|
||||
deleteAccountMsg.removeClass('alert-info').addClass('alert-danger').show();
|
||||
deleteAccountMsg.text(textStatus);
|
||||
|
Loading…
Reference in New Issue
Block a user