diff --git a/src/pages/Login/index.jsx b/src/pages/Login/index.jsx index 8087cb6..de77520 100644 --- a/src/pages/Login/index.jsx +++ b/src/pages/Login/index.jsx @@ -1,9 +1,60 @@ import React from 'react' +import { useState } from 'react' const Login = () => { + const [username, setUsername] = useState(""); + const [password, setPassword] = useState(""); + + const handleSubmit = (event) => { + event.preventDefault(); + alert("Enviando os dados: " + username + " - " + password); + } + return( -