mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
"use client"
|
|
|
|
import { Icons } from "@/components/icons"
|
|
import { Button } from "@/registry/new-york/ui/button"
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/registry/new-york/ui/card"
|
|
import { Input } from "@/registry/new-york/ui/input"
|
|
import { Label } from "@/registry/new-york/ui/label"
|
|
|
|
export function DemoCreateAccount() {
|
|
return (
|
|
<Card>
|
|
<CardHeader className="space-y-1">
|
|
<CardTitle className="text-2xl">Create an account</CardTitle>
|
|
<CardDescription>
|
|
Enter your email below to create your account
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="grid gap-4">
|
|
<div className="grid grid-cols-2 gap-6">
|
|
<Button variant="outline">
|
|
<Icons.gitHub className="mr-2 h-4 w-4" />
|
|
Github
|
|
</Button>
|
|
<Button variant="outline">
|
|
<Icons.google className="mr-2 h-4 w-4" />
|
|
Google
|
|
</Button>
|
|
</div>
|
|
<div className="relative">
|
|
<div className="absolute inset-0 flex items-center">
|
|
<span className="w-full border-t" />
|
|
</div>
|
|
<div className="relative flex justify-center text-xs uppercase">
|
|
<span className="bg-background px-2 text-muted-foreground">
|
|
Or continue with
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input id="email" type="email" placeholder="m@example.com" />
|
|
</div>
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="password">Password</Label>
|
|
<Input id="password" type="password" />
|
|
</div>
|
|
</CardContent>
|
|
<CardFooter>
|
|
<Button className="w-full">Create account</Button>
|
|
</CardFooter>
|
|
</Card>
|
|
)
|
|
}
|