-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create update password page for reseting new password
- Loading branch information
1 parent
ef6bbdd
commit c450f47
Showing
1 changed file
with
127 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
import { useState } from "react"; | ||
import { AiOutlineEye, AiOutlineEyeInvisible } from "react-icons/ai"; | ||
import { BiArrowBack } from "react-icons/bi"; | ||
import { useDispatch, useSelector } from "react-redux"; | ||
import { Link, useLocation, useNavigate } from "react-router-dom"; | ||
import { resetPassword } from "../services/operations/authAPI"; | ||
|
||
function UpdatePassword() { | ||
const navigate = useNavigate(); | ||
const dispatch = useDispatch(); | ||
const location = useLocation(); | ||
const { loading } = useSelector((state) => state.auth); | ||
|
||
const [formData, setFormData] = useState({ | ||
password: "", | ||
confirmPassword: "", | ||
}); | ||
const [showPassword, setShowPassword] = useState(false); | ||
const [showConfirmPassword, setShowConfirmPassword] = useState(false); | ||
|
||
const { password, confirmPassword } = formData; | ||
|
||
const handleOnChange = (e) => { | ||
setFormData((prevData) => ({ | ||
...prevData, | ||
[e.target.name]: e.target.value, | ||
})); | ||
}; | ||
|
||
const handleOnSubmit = (e) => { | ||
e.preventDefault(); | ||
const token = location.pathname.split("/").at(-1); | ||
dispatch(resetPassword(password, confirmPassword, token, navigate)); | ||
}; | ||
|
||
return ( | ||
<div className="grid min-h-[calc(100vh-3.5rem)] place-items-center"> | ||
{loading ? ( | ||
<div className="spinner"></div> | ||
) : ( | ||
<div className="max-w-[500px] p-4 lg:p-8"> | ||
<h1 className="text-[1.875rem] font-semibold leading-[2.375rem] text-richblack-5"> | ||
{" "} | ||
Choose new password{" "} | ||
</h1> | ||
<p className="my-4 text-[1.125rem] leading-[1.625rem] text-richblack-100"> | ||
{" "} | ||
Almost done. Enter your new password and your are all set.{" "} | ||
</p> | ||
|
||
<form onSubmit={handleOnSubmit}> | ||
<label className="relative"> | ||
<p className="mb-1 text-[0.875rem] leading-[1.375rem] text-richblack-5"> | ||
{" "} | ||
New Password <sup className="text-pink-200">*</sup>{" "} | ||
</p> | ||
<input | ||
required | ||
type={showPassword ? "text" : "password"} | ||
name="password" | ||
value={password} | ||
onChange={handleOnChange} | ||
placeholder="Enter Password" | ||
className="form-style w-full !pr-10" | ||
/> | ||
<span | ||
onClick={() => setShowPassword((prev) => !prev)} | ||
className="absolute right-3 top-[38px] z-[10] cursor-pointer" | ||
> | ||
{showPassword ? ( | ||
<AiOutlineEyeInvisible fontSize={24} fill="#AFB2BF" /> | ||
) : ( | ||
<AiOutlineEye fontSize={24} fill="#AFB2BF" /> | ||
)} | ||
</span> | ||
</label> | ||
|
||
<label className="relative mt-3 block"> | ||
<p className="mb-1 text-[0.875rem] leading-[1.375rem] text-richblack-5"> | ||
{" "} | ||
Confirm New Password <sup className="text-pink-200">*</sup>{" "} | ||
</p> | ||
<input | ||
required | ||
type={showConfirmPassword ? "text" : "password"} | ||
name="confirmPassword" | ||
value={confirmPassword} | ||
onChange={handleOnChange} | ||
placeholder="Confirm Password" | ||
className="form-style w-full !pr-10" | ||
/> | ||
<span | ||
onClick={() => setShowConfirmPassword((prev) => !prev)} | ||
className="absolute right-3 top-[38px] z-[10] cursor-pointer" | ||
> | ||
{showConfirmPassword ? ( | ||
<AiOutlineEyeInvisible fontSize={24} fill="#AFB2BF" /> | ||
) : ( | ||
<AiOutlineEye fontSize={24} fill="#AFB2BF" /> | ||
)} | ||
</span> | ||
</label> | ||
|
||
<button | ||
type="submit" | ||
className="mt-6 w-full rounded-[8px] bg-yellow-50 py-[12px] px-[12px] font-medium text-richblack-900" | ||
> | ||
{" "} | ||
Reset Password{" "} | ||
</button> | ||
</form> | ||
|
||
<div className="mt-6 flex items-center justify-between"> | ||
<Link to="/login"> | ||
<p className="flex items-center gap-x-2 text-richblack-5"> | ||
{" "} | ||
<BiArrowBack /> Back To Login{" "} | ||
</p> | ||
</Link> | ||
</div> | ||
</div> | ||
)} | ||
</div> | ||
); | ||
} | ||
|
||
export default UpdatePassword; |