An authentication modal with social login buttons and email form.
string
"Sign up / Sign in"
(provider: string) => void
Click on the icon in the top right of the example preview to view the source code for specific variants.
This component is inspired by various open-source projects and patterns. Please verify licenses and implementation details before using in production.
import { AuthModal } from "@/components/ui/auth-modal" export function AuthModalDemo() { return ( <div className="flex items-center justify-center"> <AuthModal /> </div> ) }