183 lines
7.3 KiB
React
183 lines
7.3 KiB
React
import React, { useState } from "react";
|
|
import { Link, useNavigate } from "react-router-dom";
|
|
import WrenchBoard from "../../../assets/images/wrenchboard.png";
|
|
import usersService from "../../../services/UsersService";
|
|
import InputCom from "../../Helpers/Inputs/InputCom";
|
|
import AuthLayout from "../AuthLayout";
|
|
|
|
export default function ForgotPassword() {
|
|
const [checked, setValue] = useState(false);
|
|
const [resetLoading, setResetLoading] = useState(false);
|
|
// email
|
|
const [email, setMail] = useState("");
|
|
const [msgError, setMsgError] = useState("");
|
|
const [msgSuccess, setMsgSuccess] = useState(false);
|
|
|
|
const navigate = useNavigate();
|
|
const userApi = new usersService();
|
|
|
|
const handleEmail = (e) => {
|
|
setMail(e?.target.value);
|
|
};
|
|
|
|
const humanChecker = () => {
|
|
setValue(!checked);
|
|
};
|
|
|
|
const resetHandler = async () => {
|
|
if (email == "") {
|
|
setMsgError("An email is required");
|
|
} else if (!checked) {
|
|
setMsgError("Check if you are human");
|
|
}
|
|
|
|
if (email !== "" && checked) {
|
|
const reqData = { email };
|
|
setResetLoading(true);
|
|
try {
|
|
const res = await userApi.StartResetPassword(reqData);
|
|
if (res.status === 200) {
|
|
setMsgSuccess(true);
|
|
setMail("");
|
|
setValue(false);
|
|
setResetLoading(false);
|
|
}
|
|
} catch (error) {
|
|
setResetLoading(false);
|
|
setMail("");
|
|
setMsgError("An error occurred");
|
|
throw new Error(error);
|
|
} finally {
|
|
setTimeout(() => {
|
|
setMsgError(null);
|
|
}, process.env.REACT_APP_RESET_START_ERROR_TIMEOUT);
|
|
}
|
|
}
|
|
setTimeout(() => {
|
|
setMsgError(null);
|
|
}, process.env.REACT_APP_RESET_START_ERROR_TIMEOUT);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<AuthLayout slogan="Welcome to WrenchBoard">
|
|
<div className="w-full">
|
|
<div className="mb-12">
|
|
<Link to="#">
|
|
<img
|
|
src={WrenchBoard}
|
|
alt="wrenchboard"
|
|
className="h-10 mx-auto"
|
|
/>
|
|
</Link>
|
|
</div>
|
|
<div className="content-wrapper login shadow-md w-full lg:max-w-[500px] mx-auto flex justify-center items-center xl:bg-white dark:bg-dark-white 2xl:w-[828px] rounded-[0.475rem] sm:p-7 p-5">
|
|
<div className="flex flex-col justify-center w-full h-full px-5">
|
|
<div className="title-area flex flex-col justify-center items-center relative text-center mb-7">
|
|
<h1 className="text-[#181c32] font-semibold dark:text-white mb-3 leading-[27.3px] text-[22.75px]">
|
|
Forget Password
|
|
</h1>
|
|
<span className="text-gray-400 font-medium text-[16.25px] leading-[24.375px]">
|
|
Enter your email to reset your password.
|
|
</span>
|
|
</div>
|
|
<div className="input-area">
|
|
<div className="input-item mb-10">
|
|
<InputCom
|
|
fieldClass="px-6"
|
|
placeholder="Your Username/Email"
|
|
label="Email"
|
|
name="email"
|
|
type="email"
|
|
value={email}
|
|
inputHandler={handleEmail}
|
|
iconName="message"
|
|
/>
|
|
</div>
|
|
{/* hCaptha clone for the time being */}
|
|
<div className="mb-10">
|
|
<div className="w-[303px] h-[78px] mx-auto overflow-hidden">
|
|
<div className="w-[300px] h-[74px] bg-white bottom-[1px] rounded border-gray-100 overflow-hidden cursor-pointer">
|
|
{/* Checkbox */}
|
|
<div className="h-full relative inline-block">
|
|
<div className="relative table top-0 h-full">
|
|
<div className="table-cell align-middle">
|
|
<div className="relative w-[30px] h-[30px] mx-[15px]">
|
|
<input
|
|
type="checkbox"
|
|
name="human-checkbox"
|
|
id="human-checkbox"
|
|
className="w-[28px] h-[28px] border-[1px] rounded border-gray-400 checked:bg-white"
|
|
checked={checked}
|
|
onChange={humanChecker}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="h-full relative inline-block w-[170px]">
|
|
<label className="relative table top-0 h-full">
|
|
<label className="table-cell align-middle">
|
|
<label
|
|
className="text-800 text-sm"
|
|
htmlFor="human-checkbox"
|
|
>
|
|
I am human
|
|
</label>
|
|
</label>
|
|
</label>
|
|
</div>
|
|
<div className="h-full relative inline-block w-16"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{msgError && (
|
|
<div className="relative p-4 text-[#912741] bg-[#fcd9e2] border-[#fbc6d3] mb-4 rounded-[0.475rem] text-md font-light leading-[19.5px] text-[13px]">
|
|
{msgError}
|
|
</div>
|
|
)}
|
|
{msgSuccess && (
|
|
<div className="relative p-4 text-[#44228c] bg-[#e3d7fb] border-[#d5c4f9] mb-4 rounded-[0.475rem] text-md font-light leading-[19.5px] text-[13px]">
|
|
If we find your email, you will receive a link to reset your
|
|
password. Please use or{" "}
|
|
<Link
|
|
to="/contact"
|
|
className="text-[#4687ba] hover:text-[#009ef7]"
|
|
>
|
|
contact form
|
|
</Link>{" "}
|
|
if you did not get our message after few minutes.
|
|
</div>
|
|
)}
|
|
|
|
<div className="signin-area mb-3.5">
|
|
<div className="flex justify-center items-center gap-2">
|
|
<button
|
|
type="button"
|
|
onClick={resetHandler}
|
|
className={`rounded-[0.475rem] mb-6 text-[15px] font-semibold text-white flex justify-center bg-[#4687ba] hover:bg-[#009ef7] transition-all duration-300 items-center py-[0.8875rem] px-[1.81rem]`}
|
|
>
|
|
{resetLoading ? (
|
|
<div className="signup btn-loader"></div>
|
|
) : (
|
|
<span>Send Code</span>
|
|
)}
|
|
</button>
|
|
<button
|
|
type="button"
|
|
onClick={() => navigate("/login")}
|
|
className={`rounded-[0.475rem] mb-6 text-[15px] font-semibold text-[#009ef7] hover:text-white flex justify-center bg-[#f1faff] hover:bg-[#009ef7] transition-all duration-300 items-center py-[0.8875rem] px-[1.8125rem] `}
|
|
>
|
|
Cancel
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</AuthLayout>
|
|
</>
|
|
);
|
|
}
|