diff options
-rw-r--r-- | core/js/lostpassword.js | 1 | ||||
-rw-r--r-- | core/lostpassword/templates/resetpassword.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/core/js/lostpassword.js b/core/js/lostpassword.js index 7145e219654..35173fd3d33 100644 --- a/core/js/lostpassword.js +++ b/core/js/lostpassword.js @@ -84,6 +84,7 @@ OC.Lostpassword = { } if($('#encrypted-continue').attr('checked')) { $('#reset-password #submit').hide(); + $('#reset-password #float-spinner').removeClass('hidden'); } }, diff --git a/core/lostpassword/templates/resetpassword.php b/core/lostpassword/templates/resetpassword.php index ebd7bff2668..bac8b5c75c9 100644 --- a/core/lostpassword/templates/resetpassword.php +++ b/core/lostpassword/templates/resetpassword.php @@ -13,5 +13,6 @@ script('core', 'lostpassword'); <img class="svg" id="password-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt=""/> </p> <input type="submit" id="submit" value="<?php p($l->t('Reset password')); ?>" /> + <img class="hidden" id="float-spinner" src="<?php p(\OCP\Util::imagePath('core', 'loading-dark.gif'));?>"/> </fieldset> </form> |