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) { return ( Create an account Enter your information below to create your account
Full Name Email We'll use this to contact you. We will not share your email with anyone else. Password Must be at least 8 characters long. Confirm Password Please confirm your password. Already have an account? Sign in
) }