SignupForm() — ui Function Reference
Architecture documentation for the SignupForm() function in signup-form.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 9e6cdcee_cf2a_6fb2_17ef_490552c81e43["SignupForm()"] f8d09002_6c17_ebdd_ae38_fd3eaad5faac["signup-form.tsx"] 9e6cdcee_cf2a_6fb2_17ef_490552c81e43 -->|defined in| f8d09002_6c17_ebdd_ae38_fd3eaad5faac style 9e6cdcee_cf2a_6fb2_17ef_490552c81e43 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/registry/new-york-v4/blocks/signup-03/components/signup-form.tsx lines 18–80
export function SignupForm({
className,
...props
}: React.ComponentProps<"div">) {
return (
<div className={cn("flex flex-col gap-6", className)} {...props}>
<Card>
<CardHeader className="text-center">
<CardTitle className="text-xl">Create your account</CardTitle>
<CardDescription>
Enter your email 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
/>
</Field>
<Field>
<Field className="grid grid-cols-2 gap-4">
<Field>
<FieldLabel htmlFor="password">Password</FieldLabel>
<Input id="password" type="password" required />
</Field>
<Field>
<FieldLabel htmlFor="confirm-password">
Confirm Password
</FieldLabel>
<Input id="confirm-password" type="password" required />
</Field>
</Field>
<FieldDescription>
Must be at least 8 characters long.
</FieldDescription>
</Field>
<Field>
<Button type="submit">Create Account</Button>
<FieldDescription className="text-center">
Already have an account? <a href="#">Sign in</a>
</FieldDescription>
</Field>
</FieldGroup>
</form>
</CardContent>
</Card>
<FieldDescription className="px-6 text-center">
By clicking continue, you agree to our <a href="#">Terms of Service</a>{" "}
and <a href="#">Privacy Policy</a>.
</FieldDescription>
</div>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does SignupForm() do?
SignupForm() is a function in the ui codebase, defined in apps/v4/registry/new-york-v4/blocks/signup-03/components/signup-form.tsx.
Where is SignupForm() defined?
SignupForm() is defined in apps/v4/registry/new-york-v4/blocks/signup-03/components/signup-form.tsx at line 18.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free