Auth — Sign In
Sign-in form with email/password, Google/GitHub social buttons, and forgot password link.
Installation
1
Run the CLI
$npx particleui-cli add auth-sign-in
Usage
TSX
import { AuthSignIn } from "@/components/blocks/auth-sign-in"
export default function Page() {
return <AuthSignIn />
}Props
| Prop | Type | Default | Required |
|---|---|---|---|
| heading | string | "Welcome back" | no |
| description | string | "Sign in to your account" | no |
| onSubmit | (values: { email: string; password: string }) => void | — | no |
| signUpHref | string | "/sign-up" | no |
| forgotPasswordHref | string | "/forgot-password" | no |
| showSocial | boolean | true | no |
Details
Source filecomponents/blocks/auth-sign-in.tsx
Typeblock
Categoriesauth, blocks
npm dependencies
Registry depsbutton, input, label, card, separator
Claude skill—