diff --git a/fs_template/reset_confirm.tpl b/fs_template/reset_confirm.tpl index ceb896ce..a62e5eaa 100644 --- a/fs_template/reset_confirm.tpl +++ b/fs_template/reset_confirm.tpl @@ -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); } })