import { useState } from "react"; import AuthLayout from "../../layouts/AuthLayout"; import { RecoveryForm } from "../../components/forms/RecoveryForm"; import HighlightedLink from "../../components/HighlightedLink"; const State = { Pure: "PURE", Success: "SUCCESS", Failure: "FAILURE", }; const ResetPasswordPage = () => { const [state, setState] = useState(State.Pure); return (
Please check your inbox for further instructions.
)} {state === State.Failure && (Something went wrong, please try again later.
)}
Suddenly remembered your password?
Don't actually have an account?