diff --git a/apps/web/src/components/sign-in-form.tsx b/apps/web/src/components/sign-in-form.tsx
index 15d2dd4..fb8d6ad 100644
--- a/apps/web/src/components/sign-in-form.tsx
+++ b/apps/web/src/components/sign-in-form.tsx
@@ -2,7 +2,7 @@ const MIN_PASSWORD_LENGTH = 8;
import { useForm } from "@tanstack/react-form";
import { useQueryClient } from "@tanstack/react-query";
-import { useNavigate } from "@tanstack/react-router";
+import { Link, useNavigate } from "@tanstack/react-router";
import { toast } from "sonner";
import z from "zod";
import { account, authClient } from "@/lib/auth-client";
@@ -53,7 +53,7 @@ export default function SignInForm({
.string()
.min(
MIN_PASSWORD_LENGTH,
- `Password must be at least ${MIN_PASSWORD_LENGTH} characters`
+ `Password must be at least ${MIN_PASSWORD_LENGTH} characters`,
),
}),
},
@@ -134,7 +134,17 @@ export default function SignInForm({
-
+
+
+
+
+