diff --git a/src/app/(main)/login/components/login-form.tsx b/src/app/(main)/login/components/login-form.tsx
index a907595..ded8e99 100644
--- a/src/app/(main)/login/components/login-form.tsx
+++ b/src/app/(main)/login/components/login-form.tsx
@@ -9,6 +9,14 @@ import {
CardHeader,
CardTitle,
} from "@/components/ui/card";
+import {
+ Form,
+ FormControl,
+ FormField,
+ FormItem,
+ FormLabel,
+ FormMessage,
+} from "@/components/ui/form";
import logger from "@/lib/logger";
import { useEffect } from "react";
import { Loader2 } from "lucide-react";
@@ -19,7 +27,6 @@ import { Button } from "@/components/ui/button";
import { ToastAction } from "@/components/ui/toast";
import { zodResolver } from "@hookform/resolvers/zod";
import userGetCurrentStore from "@/app/actions/(gitea)/user/store";
-import { Form, FormField, FormItem, FormLabel } from "@/components/ui/form";
const formSchema = z.object({
username: z.string().refine(
@@ -113,7 +120,10 @@ export function LoginForm() {
render={({ field }) => (
Username or Email Address
-
+
+
+
+
)}
/>
@@ -131,7 +141,10 @@ export function LoginForm() {
Forgot your password?
-
+
+
+
+
)}
/>