From 75c463b1626329100ff2377c514bea325b18bd69 Mon Sep 17 00:00:00 2001 From: Maria Sanchez Date: Tue, 2 Aug 2022 23:01:58 -0600 Subject: [PATCH] log in --- web-ui/web-react/src/components/LogIn.js | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/web-ui/web-react/src/components/LogIn.js b/web-ui/web-react/src/components/LogIn.js index 4d0531e1..e4e09d8f 100644 --- a/web-ui/web-react/src/components/LogIn.js +++ b/web-ui/web-react/src/components/LogIn.js @@ -1,8 +1,16 @@ -import React from 'react'; +import React, { useState } from 'react'; import { InputText } from 'primereact/inputtext'; const LogIn = () => { + const [email, setEmail] = useState(""); + const [password, setPassword] = useState(""); + + + const iniciarSesion = () =>{ + + } + return ( @@ -12,12 +20,12 @@ const LogIn = () => {
Iniciar Sesión
- - + +
- - + +
{/* */} @@ -28,8 +36,4 @@ const LogIn = () => { ) } -export default LogIn - -/* image 1 */ - - +export default LogIn \ No newline at end of file