diff --git a/client/pages/Login.tsx b/client/pages/Login.tsx index 08f51cc7..28442959 100644 --- a/client/pages/Login.tsx +++ b/client/pages/Login.tsx @@ -48,8 +48,10 @@ export default function Login() { const [manualVerificationLink, setManualVerificationLink] = useState< string | null >(null); + const [showReset, setShowReset] = useState(false); + const [resetEmail, setResetEmail] = useState(""); const navigate = useNavigate(); - const { signIn, signUp, signInWithOAuth, user, loading, profileComplete } = + const { signIn, signUp, signInWithOAuth, user, loading, profileComplete, requestPasswordReset } = useAuth(); const { info: toastInfo, error: toastError } = useAethexToast();