Sign-up form with name, email, password, terms checkbox, and social login options.
Create an account
Start building beautiful UIs today
or continue with email
Already have an account? Sign in
Code
import { AuthSignUp } from "@/components/blocks/auth-sign-up"
export default function Page() {
return <AuthSignUp />
}Installation
$npx particleui-cli add auth-sign-up
Usage
TSX
import { AuthSignUp } from "@/components/blocks/auth-sign-up"
export default function Page() {
return <AuthSignUp />
}Props
| Prop | Type | Default | Required |
|---|---|---|---|
| heading | string | "Create an account" | no |
| description | string | "Start building beautiful UIs today" | no |
| onSubmit | (values: { name: string; email: string; password: string }) => void | — | no |
| signInHref | string | "/sign-in" | no |
| termsHref | string | "/terms" | no |
| privacyHref | string | "/privacy" | no |
| showSocial | boolean | true | no |
Details
Source filecomponents/blocks/auth-sign-up.tsx
Typeblock
Categoriesauth, blocks
npm dependencies
Registry depsbutton, input, label, card, checkbox, separator
Claude skill—