forked from mirrors/easyappointments
47 lines
1.5 KiB
JavaScript
47 lines
1.5 KiB
JavaScript
/* ----------------------------------------------------------------------------
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
*
|
|
* @package EasyAppointments
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
|
* @copyright Copyright (c) Alex Tselegidis
|
|
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
* @link https://easyappointments.org
|
|
* @since v1.4.0
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
(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/login/validate';
|
|
|
|
const data = {
|
|
csrf_token: GlobalVariables.csrfToken,
|
|
username: $('#username').val(),
|
|
password: $('#password').val()
|
|
};
|
|
|
|
const $alert = $('.alert');
|
|
|
|
$alert.addClass('d-none');
|
|
|
|
$.post(url, data).done((response) => {
|
|
if (response.success) {
|
|
window.location.href = GlobalVariables.destUrl;
|
|
} else {
|
|
$alert.text(App.Lang.login_failed);
|
|
$alert.removeClass('d-none alert-danger alert-success').addClass('alert-danger');
|
|
}
|
|
});
|
|
}
|
|
|
|
$loginForm.on('submit', onLoginFormSubmit);
|
|
})();
|