async submitFormForgot(forgotPassword) {
const paramRequest = {
headers:{
'Content-type':'application/x-www-form-urlencoded'
}
};
this.loading = true;
var result = await Axios.post('/api/ForgotPasswordLk.php?forgot_password=yes', JSON.stringify({
}), paramRequest).then(response => {
//если пустое поле
if (this.model.USER_LOGIN == '') {
this.$notify.error({
title: 'Please enter your E-mail address.',
type: 'failed',
});
this.loading = false;
}
else {
}
});
},
print_r($_REQUEST)