Skip to content

Instantly share code, notes, and snippets.

View jweland's full-sized avatar

Jillian jweland

View GitHub Profile
@jweland
jweland / Login.jsx
Last active May 2, 2025 16:03
Coup 2 -Individual Portfolio
import { useState } from "react";
import { useNavigate } from "react-router-dom";
import axios from "axios";
import "./Login.css";
import { toast } from "react-toastify";
const Login = () => {
const [formData, setFormData] = useState({ username: "", password: "" });
const navigate = useNavigate();