Signup Form

A comprehensive signup form with name, email, and password fields.

Preview

Create an Account

Join us to access all features

Or continue with

Installation & Usage

tsx
import { SignupForm } from "@/components/ui/signup-form"

export function SignupFormDemo() {
        return(
    <div className = "flex justify-center p-10 w-full max-w-md mx-auto" >
            <div className="bg-white dark:bg-zinc-950 p-6 rounded-xl border border-zinc-200 dark:border-zinc-800 w-full shadow-sm">
      <h2 className="text-xl font-bold mb-6 text-center" > Create Account </h2>
      < SignupForm />
      </div>
      </div>
  )
}