Rename login Form

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-11-15 23:34:46 +01:00
parent 6e97788f00
commit 840695cf90
2 changed files with 2 additions and 2 deletions
@@ -6,11 +6,11 @@ import Button from "../ui/button/button.jsx";
import Input from "../ui/input/input.jsx";
import { useNavigate } from "react-router";
function LoginForm({ className }) {
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [showPassword, setShowPassword] = useState(false);
let navigate = useNavigate();
async function handleSubmit(e) {