{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "signup-01", "title": "Signup 01", "description": "A simple signup form.", "registryDependencies": ["button", "card", "input", "label"], "files": [ { "path": "registry/radix-sera/blocks/signup-01/page.tsx", "content": "import { SignupForm } from \"@/registry/radix-sera/blocks/signup-01/components/signup-form\"\n\nexport default function Page() {\n return (\n
\n
\n \n
\n
\n )\n}\n", "type": "registry:page", "target": "app/signup/page.tsx" }, { "path": "registry/radix-sera/blocks/signup-01/components/signup-form.tsx", "content": "import { Button } from \"@/registry/radix-sera/ui/button\"\nimport {\n Card,\n CardContent,\n CardDescription,\n CardHeader,\n CardTitle,\n} from \"@/registry/radix-sera/ui/card\"\nimport {\n Field,\n FieldDescription,\n FieldGroup,\n FieldLabel,\n} from \"@/registry/radix-sera/ui/field\"\nimport { Input } from \"@/registry/radix-sera/ui/input\"\n\nexport function SignupForm({ ...props }: React.ComponentProps) {\n return (\n \n \n Create an account\n \n Enter your information below to create your account\n \n \n \n
\n \n \n Full Name\n \n \n \n Email\n \n \n We'll use this to contact you. We will not share your email\n with anyone else.\n \n \n \n Password\n \n \n Must be at least 8 characters long.\n \n \n \n \n Confirm Password\n \n \n Please confirm your password.\n \n \n \n \n \n \n Already have an account? Sign in\n \n \n \n \n
\n
\n
\n )\n}\n", "type": "registry:component" } ], "categories": ["authentication", "signup"], "type": "registry:block" }