'use client' import React from 'react'; import { FcGoogle } from 'react-icons/fc'; import { FaGithub } from 'react-icons/fa'; import { FormEvent } from 'react'; type ModeType = 'light' | 'dark'; interface ModeProps { mode?: ModeType; } const SignInForm = ({ mode }: ModeProps) => { const handleSubmit = (event: FormEvent) => { event.preventDefault(); const formData = new FormData(event.currentTarget); const username = formData.get('username'); const password = formData.get('password'); console.log({ username, password }); event.currentTarget.reset(); }; return (

Sign In

Forgot password?
or
Don't have an account? Sign Up
); }; export default SignInForm;