diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2017-12-19 18:05:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-19 18:05:14 +0100 |
commit | b6fcf59881b27f0a0b7541ff6e01921d7a23142e (patch) | |
tree | bace2046421fcf6ba803800d924cf02873bc39d2 /core | |
parent | cfd116b5f91921e5e800d947ed84242599bd891c (diff) | |
parent | cdaf99cf58d65d822175fa681aecda3c1890d3dc (diff) | |
download | nextcloud-server-b6fcf59881b27f0a0b7541ff6e01921d7a23142e.tar.gz nextcloud-server-b6fcf59881b27f0a0b7541ff6e01921d7a23142e.zip |
Merge pull request #7576 from nextcloud/fix_7574
Use javascript to send the actual password reset
Diffstat (limited to 'core')
-rw-r--r-- | core/js/lostpassword.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/js/lostpassword.js b/core/js/lostpassword.js index 446d70d991e..b44962f552e 100644 --- a/core/js/lostpassword.js +++ b/core/js/lostpassword.js @@ -16,6 +16,7 @@ OC.Lostpassword = { $('#lost-password').click(OC.Lostpassword.resetLink); $('#lost-password-back').click(OC.Lostpassword.backToLogin); $('form[name=login]').submit(OC.Lostpassword.onSendLink); + $('#reset-password #submit').click(OC.Lostpassword.resetPassword); OC.Lostpassword.resetButtons(); }, |