Skip to content

Instantly share code, notes, and snippets.

View junior1242's full-sized avatar
💭
I may be slow to respond.

Shahid junior1242

💭
I may be slow to respond.
View GitHub Profile
@junior1242
junior1242 / Login.jsx
Last active October 31, 2025 21:19
final year project gist
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();