React components
Sign up form
A registration form with name, email, and password fields.
Overview
The SignUpForm component renders a user registration form. It includes fields for Name, Email, and Password, along with social login options.
Usage
import { SignUpForm } from '@/components/core/forms/signup-form';
function RegisterPage() {
return (
<div className="mx-auto max-w-sm">
<SignUpForm />
</div>
);
}Props
This component does not currently accept custom props and is intended to be used as a template or directly for simple use cases.