diff --git a/intranet/src/core/theme/main.theme.ts b/intranet/src/core/theme/main.theme.ts index 00a9ddb..04bac2b 100644 --- a/intranet/src/core/theme/main.theme.ts +++ b/intranet/src/core/theme/main.theme.ts @@ -38,6 +38,10 @@ export const mainTheme = createTheme({ fontFamily: 'Oswald', fontWeight: 600, }, + h5: { + fontFamily: 'Oswald', + fontWeight: 400, + }, }, spacing: 8, shape: { diff --git a/intranet/src/pods/sign-up/sign-up.component.tsx b/intranet/src/pods/sign-up/sign-up.component.tsx index 43577f2..1e60587 100644 --- a/intranet/src/pods/sign-up/sign-up.component.tsx +++ b/intranet/src/pods/sign-up/sign-up.component.tsx @@ -1,19 +1,100 @@ -import { Button, Typography } from '@mui/material'; +import { Button, TextField, Typography } from '@mui/material'; +import { useState } from 'react'; import * as classes from './sign-up.styles'; export const SignUpComponent: React.FC = () => { + const [formData, setFormData] = useState({ + email: '', + repeatEmail: '', + password: '', + repeatPassword: '', + }); + + const onTextFieldChange = (e: React.ChangeEvent) => { + setFormData({ ...formData, [e.target.id]: e.target.value }); + }; + + const goToNextStep = () => { + console.log('Go to next step'); + console.log({ formData }); + }; + return ( <> - Crea tu cuenta + Crea tu carta -
{/* Components for diferents estates of sign-in */}
+
+ + Paso 1 - Crear cuenta + +
+ + + + + +
- +
);