{"$schema":"https://ui.shadcn.com/schema/registry-item.json","name":"veil-forgot-password-2","type":"registry:block","title":"Forgot Password 2","description":"Tailark Veil forgot-password variant 2 block","registryDependencies":["@tailark-oss/veil-button","@tailark-oss/veil-input","@tailark-oss/veil-logo","@tailark-oss/veil-label"],"meta":{"aspect-ratio":"90/56","width":686,"height":427},"files":[{"path":"veil/blocks/forgot-password/two.tsx","type":"registry:component","target":"@components/forgot-password-2.tsx","content":"import { Logo } from '@/components/logo'\nimport { Button } from '@/components/ui/button'\nimport { Input } from '@/components/ui/input'\nimport { Label } from '@/components/ui/label'\nimport Link from 'next/link'\n\nexport default function ForgotPassword() {\n    return (\n        <section className=\"bg-background flex min-h-screen px-4 py-16 md:py-24\">\n            <div className=\"bg-muted m-auto w-full max-w-sm rounded-2xl border p-8\">\n                <div>\n                    <Link\n                        href=\"/\"\n                        aria-label=\"go home\"\n                    >\n                        <Logo className=\"h-6 w-fit\" />\n                    </Link>\n                    <h1 className=\"mt-6 font-serif text-2xl font-medium\">Forgot password?</h1>\n                    <p className=\"text-muted-foreground mt-1 text-sm\">No worries, we'll send you reset instructions</p>\n                </div>\n\n                <form\n                    action=\"\"\n                    className=\"mt-8 space-y-5\"\n                >\n                    <div className=\"space-y-2\">\n                        <Label\n                            htmlFor=\"email\"\n                            className=\"text-sm\"\n                        >\n                            Email\n                        </Label>\n                        <Input\n                            type=\"email\"\n                            id=\"email\"\n                            name=\"email\"\n                            placeholder=\"you@example.com\"\n                            required\n                        />\n                    </div>\n\n                    <Button className=\"w-full\">Send Reset Link</Button>\n                </form>\n\n                <p className=\"text-muted-foreground mt-8 text-center text-sm\">\n                    Remember your password?{' '}\n                    <Link\n                        href=\"#\"\n                        className=\"text-primary font-medium hover:underline\"\n                    >\n                        Sign in\n                    </Link>\n                </p>\n            </div>\n        </section>\n    )\n}\n"}]}