Fix disabled login/register buttons after failed attempt

In the login window, when the user enter a wrong email or password, the
"Log into my ... account" button used to remain disabled, which was very
confusing for users.

Steps to reproduce:
- Go to /login
- Type wrong email/password combination
- Press "Log into..." button

Similarly, users could not click the "register button after a failed
register attempt. For example, this occurred to users with an invalid
email address, such as "fooatgmaildotcom".
This commit is contained in:
Régis Behmo
2018-04-12 11:08:51 +02:00
committed by Michael Terry
parent 19a991f78e
commit 52c15d4637
2 changed files with 2 additions and 2 deletions

View File

@@ -100,7 +100,7 @@ from third_party_auth import provider, pipeline
$submitButton.
removeClass('is-disabled').
attr('aria-disabled', false).
removeProp('disabled').
prop('disabled', false).
html("${_('Log into My {platform_name} Account').format(platform_name=platform_name)} <span class='orn-plus'>+</span> ${_('Access My Courses')}");
}
else {

View File

@@ -85,7 +85,7 @@ import calendar
$submitButton.
removeClass('is-disabled').
attr('aria-disabled', false).
removeProp('disabled').
prop('disabled', false).
html("${_('Create My {platform_name} Account').format(platform_name=platform_name)}");
}
else {