updated forget password functionality with backend

This commit is contained in:
2025-08-23 14:29:25 +05:30
parent c86509e812
commit 1018c42500
10 changed files with 519 additions and 247 deletions

View File

@@ -0,0 +1,29 @@
let url_Backend_dwinzo = `http://${process.env.REACT_APP_SERVER_REST_API_BASE_URL}`;
export const changePasswordApi = async (
resetToken: string,
newPassword: string,
confirmPassword: string
) => {
try {
const response = await fetch(
`${url_Backend_dwinzo}/api/V1/Auth/reset-password/${resetToken}`,
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ newPassword, confirmPassword }),
}
);
const result = await response.json();
return result;
} catch (error) {
echo.error("Failed to create password");
if (error instanceof Error) {
return { error: error.message };
} else {
return { error: "An unknown error occurred" };
}
}
};

View File

@@ -0,0 +1,25 @@
let url_Backend_dwinzo = `http://${process.env.REACT_APP_SERVER_REST_API_BASE_URL}`;
export const checkEmailApi = async (Email: string) => {
try {
const response = await fetch(
`${url_Backend_dwinzo}/api/V1/Auth/forgetPassword`,
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ Email }),
}
);
const result = await response.json();
return result;
} catch (error) {
echo.error("Failed to create password");
if (error instanceof Error) {
return { error: error.message };
} else {
return { error: "An unknown error occurred" };
}
}
};

View File

@@ -0,0 +1,28 @@
let url_Backend_dwinzo = `http://${process.env.REACT_APP_SERVER_REST_API_BASE_URL}`;
export const verifyOtpApi = async (Email: string, Otp: number) => {
try {
const response = await fetch(
`${url_Backend_dwinzo}/api/V1/Auth/validate-otp`,
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
Email,
otp: Number(Otp),
}),
}
);
const result = await response.json();
return result;
} catch (error) {
echo.error("Failed to create password");
if (error instanceof Error) {
return { error: error.message };
} else {
return { error: "An unknown error occurred" };
}
}
};