import React from "react"; 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 LockScreenForm = () => { const handleSubmit = (event) => { event.preventDefault(); const data = new FormData(event.currentTarget); console.log({ email: data.get("email"), password: data.get("password"), }); }; return ( <>
Hello Andrew Burns, enter your password to unlock the screen !