| 1 | <!DOCTYPE html> |
| 2 | <html lang="es"> |
| 3 | |
| 4 | <head> |
| 5 | |
| 6 | <meta charset="UTF-8"> |
| 7 | <meta name="viewport" content="width=device-width"> |
| 8 | |
| 9 | <title>Autenticación</title> |
| 10 | |
| 11 | <script type="module" src="js/lib/manejaErrores.js"></script> |
| 12 | <script type="module" src="./js/custom/mi-nav.js"></script> |
| 13 | |
| 14 | </head> |
| 15 | |
| 16 | <body> |
| 17 | |
| 18 | <mi-nav></mi-nav> |
| 19 | |
| 20 | <h1>Autenticación</h1> |
| 21 | |
| 22 | <p>Bienvenid@.</p> |
| 23 | |
| 24 | <script type="module"> |
| 25 | |
| 26 | import { descargaVista } from "./js/lib/descargaVista.js" |
| 27 | |
| 28 | addEventListener("load", () => descargaVista("php/vista-index.php")) |
| 29 | |
| 30 | </script> |
| 31 | |
| 32 | </body> |
| 33 | |
| 34 | </html> |