diff --git a/src/components/AuthenticationFlow/AuthenticationForm.tsx b/src/components/AuthenticationFlow/AuthenticationForm.tsx index 3a6b5ecb6..70f07c5f4 100644 --- a/src/components/AuthenticationFlow/AuthenticationForm.tsx +++ b/src/components/AuthenticationFlow/AuthenticationForm.tsx @@ -3,8 +3,15 @@ import { GitHubButton } from './GitHubButton'; import { GoogleButton } from './GoogleButton'; import { LinkedInButton } from './LinkedInButton'; import { EmailLoginForm } from './EmailLoginForm'; +import { EmailSignupForm } from './EmailSignupForm'; + +type AuthenticationFormProps = { + type?: 'login' | 'signup'; +}; + +export function AuthenticationForm(props: AuthenticationFormProps) { + const { type = 'login' } = props; -export function AuthenticationForm() { const [isDisabled, setIsDisabled] = useState(false); return ( @@ -21,7 +28,14 @@ export function AuthenticationForm() {
-