forked from mirrors/easyappointments
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
|
$(function () {
|
||
|
'use strict';
|
||
|
|
||
|
var $loginForm = $('#login-form');
|
||
|
|
||
|
/**
|
||
|
* Login Button "Click"
|
||
|
*
|
||
|
* Make an ajax call to the server and check whether the user's credentials are right.
|
||
|
* If yes then redirect him to his desired page, otherwise display a message.
|
||
|
*/
|
||
|
function onLoginFormSubmit(event) {
|
||
|
event.preventDefault();
|
||
|
|
||
|
var url = GlobalVariables.baseUrl + '/index.php/user/ajax_check_login';
|
||
|
var data = {
|
||
|
'csrfToken': GlobalVariables.csrfToken,
|
||
|
'username': $('#username').val(),
|
||
|
'password': $('#password').val()
|
||
|
};
|
||
|
|
||
|
var $alert = $('.alert');
|
||
|
|
||
|
$alert.addClass('hidden');
|
||
|
|
||
|
$.post(url, data)
|
||
|
.done(function (response) {
|
||
|
if (response === GlobalVariables.AJAX_SUCCESS) {
|
||
|
window.location.href = GlobalVariables.destUrl;
|
||
|
} else {
|
||
|
$alert.text(EALang['login_failed']);
|
||
|
$alert
|
||
|
.removeClass('hidden alert-danger alert-success')
|
||
|
.addClass('alert-danger');
|
||
|
}
|
||
|
})
|
||
|
.fail(GeneralFunctions.ajaxFailureHandler);
|
||
|
}
|
||
|
|
||
|
$loginForm.on('submit', onLoginFormSubmit);
|
||
|
});
|