mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 22:45:47 +00:00
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import { Button } from "@/registry/default/ui/button"
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/registry/default/ui/card"
|
|
import { Input } from "@/registry/default/ui/input"
|
|
import { Label } from "@/registry/default/ui/label"
|
|
|
|
export const description =
|
|
"A simple login form with email and password. The submit button says 'Sign in'."
|
|
|
|
export const iframeHeight = "600px"
|
|
|
|
export const containerClassName =
|
|
"w-full h-screen flex items-center justify-center px-4"
|
|
|
|
export default function LoginForm() {
|
|
return (
|
|
<Card className="w-full max-w-sm">
|
|
<CardHeader>
|
|
<CardTitle className="text-2xl">Login</CardTitle>
|
|
<CardDescription>
|
|
Enter your email below to login to your account.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="grid gap-4">
|
|
<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">
|
|
<Label htmlFor="password">Password</Label>
|
|
<Input id="password" type="password" required />
|
|
</div>
|
|
</CardContent>
|
|
<CardFooter>
|
|
<Button className="w-full">Sign in</Button>
|
|
</CardFooter>
|
|
</Card>
|
|
)
|
|
}
|