Register

User registration with strong password policy and confirmation matching.

Report an issue
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;
}