import { cn } from "@/lib/utils" import { Button } from "@/components/ui/button" import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card" import { Field, FieldDescription, FieldGroup, FieldLabel, } from "@/components/ui/field" import { Input } from "@/components/ui/input" import { LoginFormAction } from "@/actions/auth/AuthActions" export function LoginForm({ className, ...props }: React.ComponentProps<"div">) { return (
Login to your account Enter your email below to login to your account
Email Don't have an account? Sign up
) }