|
@@ -1,7 +1,7 @@
|
1
|
1
|
import * as React from 'react';
|
2
|
2
|
|
3
|
3
|
import {
|
4
|
|
- Paper, Box, Grid,Link, Checkbox, FormControlLabel, Typography,
|
|
4
|
+ Paper, Box, Grid, Checkbox, FormControlLabel, Typography,
|
5
|
5
|
TextField, CssBaseline, Button, Avatar
|
6
|
6
|
} from '@mui/material'
|
7
|
7
|
|
|
@@ -10,6 +10,7 @@ import { createTheme, ThemeProvider } from '@mui/material/styles';
|
10
|
10
|
import PersonIcon from '@mui/icons-material/Person';
|
11
|
11
|
import { useNavigate } from 'react-router-dom'
|
12
|
12
|
import { Copyright } from '../Components/Footer.js'
|
|
13
|
+import { Link } from 'react-router-dom'
|
13
|
14
|
import useAuth from '../Auth/useAuth';
|
14
|
15
|
|
15
|
16
|
import { useFormik } from 'formik';
|
|
@@ -138,12 +139,12 @@ export function Login() {
|
138
|
139
|
</Button>
|
139
|
140
|
<Grid container>
|
140
|
141
|
<Grid item xs>
|
141
|
|
- <Link href="#" variant="body2">
|
|
142
|
+ <Link className="login_link" to='/password/recuperar'>
|
142
|
143
|
¿Olvidaste tu contraseña?
|
143
|
144
|
</Link>
|
144
|
145
|
</Grid>
|
145
|
146
|
<Grid item>
|
146
|
|
- <Link href="#" variant="body2">
|
|
147
|
+ <Link className="login_link" to='/'>
|
147
|
148
|
{"¿No tienes cuenta? Regístrate"}
|
148
|
149
|
</Link>
|
149
|
150
|
</Grid>
|