This commit is contained in:
eson 2023-09-05 16:59:24 +08:00
parent 59d11b3d4e
commit ed68e274e2

View File

@ -145,14 +145,15 @@ function resetPassword() {
},
body: JSON.stringify(data)
})
.then(response => {
.then(response => response.json())
.then(data => {
if (response.ok ) {
console.log(response);
document.getElementById('successMessage').innerText = JSON.stringify(response);
if (data.code == 200 ) {
document.getElementById('successMessage').innerText = JSON.stringify(data);
} else {
console.error('Password reset failed');
document.getElementById('errorMessage').innerText = 'Password reset failed. Please try again.';
document.getElementById('errorMessage').innerText = JSON.stringify(data);
}
})