Skip to content
Snippets Groups Projects
Commit 95cfe292 authored by Christopher Schäpers's avatar Christopher Schäpers Committed by Christopher Schäpers
Browse files

Make the password changed msg inline to fix #10242

parent 9baf7a0a
Branches
No related tags found
No related merge requests found
...@@ -25,8 +25,6 @@ input#openid, input#webdav { width:20em; } ...@@ -25,8 +25,6 @@ input#openid, input#webdav { width:20em; }
font-weight: bold; font-weight: bold;
} }
#passworderror { display:none; }
#passwordchanged { display:none; }
#displaynameerror { display:none; } #displaynameerror { display:none; }
#displaynamechanged { display:none; } #displaynamechanged { display:none; }
input#identity { width:20em; } input#identity { width:20em; }
......
...@@ -182,20 +182,25 @@ $(document).ready(function () { ...@@ -182,20 +182,25 @@ $(document).ready(function () {
if (data.status === "success") { if (data.status === "success") {
$('#pass1').val(''); $('#pass1').val('');
$('#pass2').val(''); $('#pass2').val('');
$('#passwordchanged').show(); // Hide a possible errormsg and show successmsg
$('#password-changed').removeClass('hidden').addClass('inlineblock');
$('#password-error').removeClass('inlineblock').addClass('hidden');
} else { } else {
if (typeof(data.data) !== "undefined") { if (typeof(data.data) !== "undefined") {
$('#passworderror').html(data.data.message); $('#passworderror').html(data.data.message);
} else { } else {
$('#passworderror').html(t('Unable to change password')); $('#passworderror').html(t('Unable to change password'));
} }
$('#passworderror').show(); // Hide a possible successmsg and show errormsg
$('#password-changed').removeClass('inlineblock').addClass('hidden');
$('#password-error').removeClass('hidden').addClass('inlineblock');
} }
}); });
return false; return false;
} else { } else {
$('#passwordchanged').hide(); // Hide a possible successmsg and show errormsg
$('#passworderror').show(); $('#password-changed').removeClass('inlineblock').addClass('hidden');
$('#password-error').removeClass('hidden').addClass('inlineblock');
return false; return false;
} }
......
...@@ -69,9 +69,10 @@ if($_['passwordChangeSupported']) { ...@@ -69,9 +69,10 @@ if($_['passwordChangeSupported']) {
script('jquery-showpassword'); script('jquery-showpassword');
?> ?>
<form id="passwordform" class="section"> <form id="passwordform" class="section">
<h2><?php p($l->t('Password'));?></h2> <h2 class="inlineblock"><?php p($l->t('Password'));?></h2>
<div id="passwordchanged"><?php echo $l->t('Your password was changed');?></div> <div class="hidden icon-checkmark" id="password-changed"></div>
<div id="passworderror"><?php echo $l->t('Unable to change your password');?></div> <div class="hidden" id="password-error"><?php p($l->t('Unable to change your password'));?></div>
<br>
<input type="password" id="pass1" name="oldpassword" <input type="password" id="pass1" name="oldpassword"
placeholder="<?php echo $l->t('Current password');?>" placeholder="<?php echo $l->t('Current password');?>"
autocomplete="off" autocapitalize="off" autocorrect="off" /> autocomplete="off" autocapitalize="off" autocorrect="off" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment