import React from "react"; import Link from "next/link"; import Grid from "@mui/material/Grid"; import { Typography } from "@mui/material"; import { Box } from "@mui/system"; import TextField from "@mui/material/TextField"; import Button from "@mui/material/Button"; import FormControlLabel from "@mui/material/FormControlLabel"; import Checkbox from "@mui/material/Checkbox"; import styles from "@/components/Authentication/Authentication.module.css"; const SignInForm = () => { const handleSubmit = (event) => { event.preventDefault(); const data = new FormData(event.currentTarget); console.log({ email: data.get("email"), password: data.get("password"), }); }; return ( <>
Sign In{" "} favicon Already have an account?{" "} Sign up Sign in with Google Sign in with Facebook
or
Email Password } label="Remember me." /> Forgot your password?
); }; export default SignInForm;