Back to all

modern-auth

by OwaisImran2005

00Feb 7, 2026Visit Source
interface LoginFormProps { onSubmit: (email: string, password: string) => Promise; onSocialLogin?: (provider: 'google' | 'github' | 'apple') => void; onForgotPassword?: () => void; isLoading?: boolean; }