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
|
|
|
|
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) {
|
2021-11-06 18:51:36 +03:00
|
|
|
if (response.success) {
|
2020-04-27 21:27:18 +03:00
|
|
|
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);
|
|
|
|
});
|