Forgot password page created

This commit is contained in:
2025-03-15 21:52:26 -04:00
parent d42f625540
commit 10d8159353
4 changed files with 28 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ import PasswordInput from "@/components/input/PasswordInput";
import TextInput from "@/components/input/TextInput";
import { useAuth } from "@/providers/AuthProvider";
import { useTimedModal } from "@/providers/TimedModalProvider";
import { Navigate, useNavigate } from "react-router";
import { Link, Navigate, useNavigate } from "react-router";
export default function LoginPage(){
@@ -79,6 +79,15 @@ export default function LoginPage(){
Login
</PrimaryButton>
</div>
<div
className="flex flex-row justify-center items-center"
>
<Link
to="/forgotPassword"
>
Forgot Password?
</Link>
</div>
</form>
</main>
);