{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "sign-in-2",
  "title": "Email & Password",
  "description": "Email & Password for Sign In.",
  "dependencies": [],
  "registryDependencies": [
    "button",
    "input",
    "label"
  ],
  "files": [
    {
      "path": "registry/intents/auth/sign-in/sign-in-2.tsx",
      "content": "import { Button } from '@/components/ui/button'\nimport {\n  Card,\n  CardContent,\n  CardDescription,\n  CardHeader,\n  CardTitle,\n} from '@/components/ui/card'\nimport { Input } from '@/components/ui/input'\nimport { Label } from '@/components/ui/label'\n\nexport function SignIn2() {\n  return (\n    <Card>\n      <CardHeader>\n        <CardTitle>Welcome back</CardTitle>\n        <CardDescription>Sign in with your email and password.</CardDescription>\n      </CardHeader>\n      <CardContent>\n        <div className=\"flex flex-col gap-4\">\n          <div className=\"flex flex-col gap-1.5\">\n            <Label htmlFor=\"ep-email\" className=\"text-xs\">\n              Email\n            </Label>\n            <Input\n              id=\"ep-email\"\n              type=\"email\"\n              placeholder=\"you@acme.com\"\n              autoComplete=\"email\"\n            />\n          </div>\n\n          <div className=\"flex flex-col gap-1.5\">\n            <div className=\"flex items-center justify-between\">\n              <Label htmlFor=\"ep-password\" className=\"text-xs\">\n                Password\n              </Label>\n              <a\n                href=\"#\"\n                className=\"text-muted-foreground hover:text-foreground text-[11px]\"\n              >\n                Forgot?\n              </a>\n            </div>\n            <Input\n              id=\"ep-password\"\n              type=\"password\"\n              placeholder=\"••••••••\"\n              autoComplete=\"current-password\"\n            />\n          </div>\n\n          <Button className=\"w-full\">Sign in</Button>\n        </div>\n      </CardContent>\n\n      <p className=\"text-muted-foreground mt-5 text-center text-xs\">\n        No account?{' '}\n        <a href=\"#\" className=\"text-foreground font-medium hover:underline\">\n          Sign up\n        </a>\n      </p>\n    </Card>\n  )\n}\n",
      "type": "registry:component",
      "target": "components/flx/intent/sign-in/sign-in-2.tsx"
    }
  ],
  "type": "registry:block"
}