mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-09 17:42:21 +03:00
Corrected message styling class for the forgot_password.php page.
This commit is contained in:
parent
5654dd46cf
commit
a3d12cd04e
1 changed files with 3 additions and 3 deletions
|
@ -98,19 +98,19 @@
|
|||
console.log('Regenerate Password Response: ', response);
|
||||
//////////////////////////////////////////////////////////
|
||||
|
||||
$('.alert').removeClass('hidden alert-danger alert-success');
|
||||
$('#get-new-password').prop('disabled', false);
|
||||
|
||||
if (!GeneralFunctions.handleAjaxExceptions(response)) return;
|
||||
|
||||
if (response == GlobalVariables.AJAX_SUCCESS) {
|
||||
$('.alert').addClass('alert-success');
|
||||
$('.alert').text(EALang['new_password_sent_with_email']);
|
||||
} else {
|
||||
$('.alert').addClass('alert-danger');
|
||||
$('.alert').text('The operation failed! Please enter a valid username '
|
||||
+ 'and email address in order to get a new password.');
|
||||
}
|
||||
$('.alert')
|
||||
.removeClass('hidden alert-danger alert-success')
|
||||
.addClass('alert-danger');
|
||||
}, 'json');
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue