| 1 | <!DOCTYPE html> |
| 2 | <html lang="es" class="light dark"> |
| 3 | |
| 4 | <head> |
| 5 | |
| 6 | <meta charset="UTF-8"> |
| 7 | <title>PWA con Crud</title> |
| 8 | |
| 9 | <meta name="description" content="Ejemplo de PWA con Formulario"> |
| 10 | |
| 11 | <script type="module" src="js/lib/registraServiceWorker.js"></script> |
| 12 | <script type="module" src="js/lib/manejaErrores.js"></script> |
| 13 | |
| 14 | <meta name="viewport" content="width=device-width"> |
| 15 | <meta name="theme-color" content="#fffbfe"> |
| 16 | <link rel="icon" sizes="32x32" href="favicon.ico"> |
| 17 | <link rel="manifest" href="site.webmanifest"> |
| 18 | <script src="ungap/custom-elements.js"></script> |
| 19 | |
| 20 | <script type="module" src="js/lib/custom/md-app-bar.js"></script> |
| 21 | <script type="module" src="js/nav-tab-fixed.js"></script> |
| 22 | |
| 23 | <link rel="stylesheet" href="css/estilos.css"> |
| 24 | <link rel="stylesheet" href="css/transicion_pestanas.css"> |
| 25 | <link rel="stylesheet" href="css/md-tab.css"> |
| 26 | <link rel="stylesheet" href="css/material-symbols-outlined.css"> |
| 27 | <link rel="stylesheet" href="css/md-list.css"> |
| 28 | <link rel="stylesheet" href="css/md-fab-primary.css"> |
| 29 | |
| 30 | </head> |
| 31 | |
| 32 | <body> |
| 33 | |
| 34 | <md-app-bar class="centered" adicional="tab"> |
| 35 | |
| 36 | <h1>PWA con Crud</h1> |
| 37 | |
| 38 | </md-app-bar> |
| 39 | |
| 40 | <nav-tab-fixed id="tab"></nav-tab-fixed> |
| 41 | |
| 42 | <section> |
| 43 | |
| 44 | <ul class="md-list"> |
| 45 | |
| 46 | <li> |
| 47 | <a class="md-one-line" href="modifica.html?id=1"> |
| 48 | <span class="headline"> |
| 49 | Fut |
| 50 | </span> |
| 51 | </a> |
| 52 | </li> |
| 53 | |
| 54 | <li> |
| 55 | <a class="md-one-line" href="modifica.html?id=2"> |
| 56 | <span class="headline"> |
| 57 | Basket |
| 58 | </span> |
| 59 | </a> |
| 60 | </li> |
| 61 | |
| 62 | </ul> |
| 63 | |
| 64 | <a href="agrega.html" class="md-fab-primary" title="Agregar" |
| 65 | style="position: fixed; bottom: 1rem; right: 1rem;"> |
| 66 | <span class="material-symbols-outlined">add</span> |
| 67 | </a> |
| 68 | |
| 69 | </section> |
| 70 | |
| 71 | |
| 72 | </body> |
| 73 | |
| 74 | </html> |