added select country in complete signup page

This commit is contained in:
victorAnumudu
2024-12-30 19:17:52 +01:00
parent 10c8636bd7
commit 46621f60c0
2 changed files with 145 additions and 100 deletions
+8
View File
@@ -58,6 +58,14 @@ export const signUpUser = (reqData) => {
return postAuxEnd('/panel/auth/register', postData, false)
}
// FUNCTION TO VERIFY EMAIL
export const verifyEmail = (reqData) => {
let postData = {
...reqData
}
return postAuxEnd('/panel/auth/register/verify', postData, false)
}
// FUNCTION TO RESET USER PASSWORD
export const recoverPWD = (reqData) => {