change password

This commit is contained in:
akosse
2020-01-22 12:18:03 +03:00
parent cb10af1bce
commit 8322d58066
8 changed files with 78 additions and 12 deletions

24
frontend/web/js/site.js Normal file
View File

@ -0,0 +1,24 @@
$(document).on("beforeSubmit", "#password-form", function (e) {
let form = $(this);
let formData = form.serialize();
let location = document.location.href;
location = location.split('=');
formData = formData.split('=');
console.log(formData[2]);
$.ajax({
url: 'ajax',
type: 'POST',
data: {
id: location[1],
password: formData[2],
},
password: formData[2],
success: function (response) {
window.location.replace('index');
},
error: function () {
}
});
});