change password
This commit is contained in:
24
frontend/web/js/site.js
Normal file
24
frontend/web/js/site.js
Normal 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 () {
|
||||
}
|
||||
});
|
||||
|
||||
});
|
Reference in New Issue
Block a user