frontend: Make signup/login/passwordreset/forgot forms submittable

Fixes #117
This commit is contained in:
Johannes Zellner
2019-03-02 20:37:35 +01:00
parent 9d6955b81e
commit b4790397c9
8 changed files with 86 additions and 66 deletions

View File

@@ -4,7 +4,9 @@
// Signs up the user and redirects to either the login page or the email
// confirmation, depending on whether or not SMTP is configured in the
// backend.
global.signup = function() {
global.signup = function(event) {
event.preventDefault();
if ($("#password").val() !== $("#password2").val()) {
global.textSet("#err", "The two passwords don't match");
return;