Create new login HTTP client JS module.
This commit is contained in:
parent
0051a30673
commit
af464bd83c
1 changed files with 41 additions and 0 deletions
41
assets/js/http/login_http_client.js
Normal file
41
assets/js/http/login_http_client.js
Normal 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
|
||||
};
|
||||
})();
|
Loading…
Reference in a new issue