Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | import React from "react"; import CustomButton from "../../components/common/CustomButton/index.tsx"; import { useNavigate } from "react-router-dom"; import { ChevronLeftRounded } from "@mui/icons-material"; function ResetPassword() { const navigate = useNavigate(); const goToLogin = () => { navigate("/login", { replace: true }); }; return ( <main className="bg-gray-50 w-screen h-screen flex items-center justify-center"> <div className="flex flex-col items-center justify-center gap-5 bg-white shadow-md p-8 rounded-xl"> <img src="/logo/drdroid-logo-full.png" alt="DrDroid Logo" className="w-64 max-w-xs" /> <p className="text-sm"> Ask your administrator to reset your password. </p> <CustomButton className="!bg-violet-500 !text-white !text-sm w-full !justify-center hover:!bg-transparent hover:!text-violet-500 p-2 font-normal" onClick={goToLogin}> <ChevronLeftRounded /> Back to Login </CustomButton> </div> </main> ); } export default ResetPassword; |