started password reset

This commit was merged in pull request #56.
This commit is contained in:
victorAnumudu
2025-08-02 16:47:29 +01:00
parent 59d9eb3df9
commit f5018bc6b7
5 changed files with 245 additions and 3 deletions
+14 -2
View File
@@ -134,9 +134,21 @@ export const recentActions = (reqData) => {
return postAuxEnd(`/panel/account/actions`, postData, false)
}
// FUNCTION TO VERIFY RESET TOKEN
export const verifyResetToken = (reqData) => {
let postData = {
...reqData
}
return postAuxEnd('/panel/auth/resetverify', postData, false)
}
// FUNCTION TO COMPLETE PASSWORD RESET
export const completePWDReset = (reqData) => {
let postData = {
...reqData
}
return postAuxEnd('/panel/auth/resetcomplete', postData, false)
}