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 styles from "@/components/Authentication/Authentication.module.css"; const ForgotPasswordForm = () => { const handleSubmit = (event) => { event.preventDefault(); const data = new FormData(event.currentTarget); console.log({ email: data.get("email"), password: data.get("password"), }); }; return ( <>
Forgot Password?{" "} favicon Enter your email and we′ll send you instructions to reset your password Email Back to Sign in
); }; export default ForgotPasswordForm;