Register
User registration with strong password policy and confirmation matching.
auth
Install
$ npx shadcn@latest add @open-types/register
Source
export interface Register {
email: string;
password: string;
confirmPassword: string;
name: string;
tosAccepted: true;
}
export interface Register {
email: string;
password: string;
confirmPassword: string;
name: string;
tosAccepted: true;
}