2020-04-27 21:27:18 +03:00
|
|
|
$(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';
|
2020-05-06 20:15:11 +03:00
|
|
|
|
2020-04-27 21:27:18 +03:00
|
|
|
var data = {
|
|
|
|
'csrfToken': GlobalVariables.csrfToken,
|
|
|
|
'username': $('#username').val(),
|
|
|
|
'password': $('#password').val()
|
|
|
|
};
|
|
|
|
|
|
|
|
var $alert = $('.alert');
|
|
|
|
|
2020-06-18 21:37:11 +03:00
|
|
|
$alert.addClass('d-none');
|
2020-04-27 21:27:18 +03:00
|
|
|
|
|
|
|
$.post(url, data)
|
|
|
|
.done(function (response) {
|
|
|
|
if (response === GlobalVariables.AJAX_SUCCESS) {
|
|
|
|
window.location.href = GlobalVariables.destUrl;
|
|
|
|
} else {
|
|
|
|
$alert.text(EALang['login_failed']);
|
|
|
|
$alert
|
2020-06-18 21:37:11 +03:00
|
|
|
.removeClass('d-none alert-danger alert-success')
|
2020-04-27 21:27:18 +03:00
|
|
|
.addClass('alert-danger');
|
|
|
|
}
|
2020-12-02 20:57:49 +03:00
|
|
|
});
|
2020-04-27 21:27:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$loginForm.on('submit', onLoginFormSubmit);
|
|
|
|
});
|