Template
Auth Flow
Sign in, sign up, forgot password, and email verification screens.
Install all blocks
bash
npx particleui-cli add auth-sign-in auth-sign-up auth-forgot-password auth-verify-emailThis installs all 4 blocks in one command. Each block is added to your src/components/ui/ directory.
Included blocks
Compose it
TSX
import { AuthTemplate } from "@/components/templates/auth"
export default function Page() {
return <AuthTemplate />
}