easyappointments/assets/js/pages/login.js

48 lines
1.6 KiB
JavaScript
Raw Normal View History

2021-10-04 10:26:48 +03:00
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.4.0
* ---------------------------------------------------------------------------- */
2021-10-28 14:30:39 +03:00
(function () {
const $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();
const url = GlobalVariables.baseUrl + '/index.php/user/ajax_check_login';
const data = {
'csrfToken': GlobalVariables.csrfToken,
'username': $('#username').val(),
'password': $('#password').val()
};
const $alert = $('.alert');
2020-06-18 21:37:11 +03:00
$alert.addClass('d-none');
$.post(url, data).done((response) => {
if (response.success) {
window.location.href = GlobalVariables.destUrl;
} else {
$alert.text(EALang['login_failed']);
$alert.removeClass('d-none alert-danger alert-success').addClass('alert-danger');
}
});
}
$loginForm.on('submit', onLoginFormSubmit);
})();