Create new login HTTP client JS module.

This commit is contained in:
Alex Tselegidis 2022-01-17 18:22:23 +01:00
parent 0051a30673
commit af464bd83c
1 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,41 @@
/* ----------------------------------------------------------------------------
* 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.5.0
* ---------------------------------------------------------------------------- */
/**
* Login HTTP client.
*
* This module implements the account login related HTTP requests.
*/
App.Http.Login = (function () {
/**
* Perform an account recovery.
*
* @param {String} username
* @param {String} password
*
* @return {Object}
*/
function validate(username, password) {
const url = App.Utils.Url.siteUrl('login/validate');
const data = {
csrf_token: App.Vars.csrf_token,
username,
password
};
return $.post(url, data);
}
return {
validate
};
})();