{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "login", "type": "registry:block", "dependencies": [], "registryDependencies": [ "button", "card", "field", "input" ], "files": [ { "path": "registry/new-york/login/components/login-form.tsx", "content": "import { cn } from \"@/lib/utils\"\nimport { Button } from \"@/components/ui/button\"\nimport {\n Card,\n CardContent,\n CardDescription,\n CardHeader,\n CardTitle,\n} from \"@/components/ui/card\"\nimport {\n Field,\n FieldDescription,\n FieldGroup,\n FieldLabel,\n} from \"@/components/ui/field\"\nimport { Input } from \"@/components/ui/input\"\n\nexport function LoginForm({\n className,\n ...props\n}: React.ComponentProps<\"div\">) {\n return (\n
\n \n \n Login to your account\n \n Enter your email below to login to your account\n \n \n \n
\n \n \n Email\n \n \n \n
\n Password\n \n Forgot your password?\n \n
\n \n
\n \n \n \n \n Don't have an account? Sign up\n \n \n
\n
\n
\n
\n
\n )\n}\n", "type": "registry:component" }, { "path": "registry/new-york/login/login.tsx", "content": "import { LoginForm } from \"./components/login-form\"\n\nexport function Login() {\n return (\n
\n
\n \n
\n
\n )\n}\n", "type": "registry:component" } ] }