This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { useState } from "react"; | |
| import bgImage from "../assets/ggcPic.webp"; // same background as signup | |
| const Login = () => { | |
| const [email, setEmail] = useState(""); | |
| const [password, setPassword] = useState(""); | |
| const handleLogin = (e) => { | |
| e.preventDefault(); |