LoginForm() — ui Function Reference
Architecture documentation for the LoginForm() function in login-form.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 205a8306_359a_17d5_0e41_bcc2b43b7516["LoginForm()"] b8d1478a_6bca_da5a_f2ad_936860b3969a["login-form.tsx"] 205a8306_359a_17d5_0e41_bcc2b43b7516 -->|defined in| b8d1478a_6bca_da5a_f2ad_936860b3969a style 205a8306_359a_17d5_0e41_bcc2b43b7516 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
deprecated/www/registry/new-york/blocks/login-01/components/login-form.tsx lines 13–68
export function LoginForm({
className,
...props
}: React.ComponentPropsWithoutRef<"div">) {
return (
<div className={cn("flex flex-col gap-6", className)} {...props}>
<Card>
<CardHeader>
<CardTitle className="text-2xl">Login</CardTitle>
<CardDescription>
Enter your email below to login to your account
</CardDescription>
</CardHeader>
<CardContent>
<form>
<div className="flex flex-col gap-6">
<div className="grid gap-2">
<Label htmlFor="email">Email</Label>
<Input
id="email"
type="email"
placeholder="m@example.com"
required
/>
</div>
<div className="grid gap-2">
<div className="flex items-center">
<Label htmlFor="password">Password</Label>
<a
href="#"
className="ml-auto inline-block text-sm underline-offset-4 hover:underline"
>
Forgot your password?
</a>
</div>
<Input id="password" type="password" required />
</div>
<Button type="submit" className="w-full">
Login
</Button>
<Button variant="outline" className="w-full">
Login with Google
</Button>
</div>
<div className="mt-4 text-center text-sm">
Don't have an account?{" "}
<a href="#" className="underline underline-offset-4">
Sign up
</a>
</div>
</form>
</CardContent>
</Card>
</div>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does LoginForm() do?
LoginForm() is a function in the ui codebase, defined in deprecated/www/registry/new-york/blocks/login-01/components/login-form.tsx.
Where is LoginForm() defined?
LoginForm() is defined in deprecated/www/registry/new-york/blocks/login-01/components/login-form.tsx at line 13.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free