diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-02-24 11:54:17 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-02-24 11:54:17 +0100 |
commit | e5c6af51027f786d74f859584f0aa6c85db6ead6 (patch) | |
tree | 8435e257caf79adacb96ce0a591dd48050a81155 /settings/templates/personal.php | |
parent | da8e34cf7f31ae6b560fabdd9c59179b4e1f4f0a (diff) | |
parent | 4b2d80a34b9ee11be2cf4641d2c99056a1a44b9b (diff) | |
download | nextcloud-server-e5c6af51027f786d74f859584f0aa6c85db6ead6.tar.gz nextcloud-server-e5c6af51027f786d74f859584f0aa6c85db6ead6.zip |
Merge pull request #10599 from owncloud/move_passwordchange_text
Make the password changed msg inline to fix #10242
Diffstat (limited to 'settings/templates/personal.php')
-rw-r--r-- | settings/templates/personal.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index f48737b6db7..5c737f84412 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -69,9 +69,10 @@ if($_['passwordChangeSupported']) { script('jquery-showpassword'); ?> <form id="passwordform" class="section"> - <h2><?php p($l->t('Password'));?></h2> - <div id="passwordchanged"><?php echo $l->t('Your password was changed');?></div> - <div id="passworderror"><?php echo $l->t('Unable to change your password');?></div> + <h2 class="inlineblock"><?php p($l->t('Password'));?></h2> + <div class="hidden icon-checkmark" id="password-changed"></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" placeholder="<?php echo $l->t('Current password');?>" autocomplete="off" autocapitalize="off" autocorrect="off" /> |