| 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>Iniciar sesión</title> |
| 10 | |
| 11 | <link rel="stylesheet" href="css/estilos.css"> |
| 12 | <script src="dompurify/purify.min.js"></script> |
| 13 | <script type="module" src="libclienteweb/manejaErrores.js"></script> |
| 14 | |
| 15 | </head> |
| 16 | |
| 17 | <body> |
| 18 | |
| 19 | <progress id="ocupado" max="100">Cargando…</progress> |
| 20 | |
| 21 | <form id="formulario" hidden> |
| 22 | |
| 23 | <h1>Iniciar Sesión</h1> |
| 24 | |
| 25 | <p><a href="perfil.html">Cancelar</a></p> |
| 26 | |
| 27 | <p> |
| 28 | <label> |
| 29 | San |
| 30 | <input name="san"> |
| 31 | </label> |
| 32 | </p> |
| 33 | |
| 34 | <p> |
| 35 | <label> |
| 36 | Sen |
| 37 | <input type="password" name="sen"> |
| 38 | </label> |
| 39 | </p> |
| 40 | |
| 41 | <p><button type="submit">Iniciar sesión</button></p> |
| 42 | |
| 43 | </form> |
| 44 | |
| 45 | <script type="module" src="js/login.js"></script> |
| 46 | |
| 47 | </body> |
| 48 | |
| 49 | </html> |