77 lines
2.4 KiB
TypeScript
77 lines
2.4 KiB
TypeScript
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"
|
|
|
|
export function SignupForm({ ...props }: React.ComponentProps<typeof Card>) {
|
|
return (
|
|
<Card {...props}>
|
|
<CardHeader>
|
|
<CardTitle>Create an account</CardTitle>
|
|
<CardDescription>
|
|
Enter your information below to create your account
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<form>
|
|
<FieldGroup>
|
|
<Field>
|
|
<FieldLabel htmlFor="name">Full Name</FieldLabel>
|
|
<Input id="name" type="text" placeholder="John Doe" required />
|
|
</Field>
|
|
<Field>
|
|
<FieldLabel htmlFor="email">Email</FieldLabel>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
placeholder="m@example.com"
|
|
required
|
|
/>
|
|
<FieldDescription>
|
|
We'll use this to contact you. We will not share your email
|
|
with anyone else.
|
|
</FieldDescription>
|
|
</Field>
|
|
<Field>
|
|
<FieldLabel htmlFor="password">Password</FieldLabel>
|
|
<Input id="password" type="password" required />
|
|
<FieldDescription>
|
|
Must be at least 8 characters long.
|
|
</FieldDescription>
|
|
</Field>
|
|
<Field>
|
|
<FieldLabel htmlFor="confirm-password">
|
|
Confirm Password
|
|
</FieldLabel>
|
|
<Input id="confirm-password" type="password" required />
|
|
<FieldDescription>Please confirm your password.</FieldDescription>
|
|
</Field>
|
|
<FieldGroup>
|
|
<Field>
|
|
<Button type="submit">Create Account</Button>
|
|
<Button variant="outline" type="button">
|
|
Sign up with Google
|
|
</Button>
|
|
<FieldDescription className="px-6 text-center">
|
|
Already have an account? <a href="/login">Sign in</a>
|
|
</FieldDescription>
|
|
</Field>
|
|
</FieldGroup>
|
|
</FieldGroup>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|