| 1 | <!DOCTYPE html> |
| 2 | <html lang="es" class="light dark"> |
| 3 | |
| 4 | <head> |
| 5 | |
| 6 | <meta charset="UTF-8"> |
| 7 | <title>Select - PWA con Formulario</title> |
| 8 | |
| 9 | <script type="module" src="js/lib/registraServiceWorker.js"></script> |
| 10 | <script type="module" src="js/lib/manejaErrores.js"></script> |
| 11 | |
| 12 | <meta name="viewport" content="width=device-width"> |
| 13 | <meta name="theme-color" content="#fffbfe"> |
| 14 | <link rel="icon" sizes="32x32" href="favicon.ico"> |
| 15 | <link rel="manifest" href="site.webmanifest"> |
| 16 | <script src="ungap/custom-elements.js"></script> |
| 17 | |
| 18 | <script type="module" src="js/lib/custom/md-app-bar.js"></script> |
| 19 | <script type="module" src="js/lib/custom/md-select-menu.js"></script> |
| 20 | <script type="module" src="js/lib/custom/md-options-menu.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/md-menu.css"> |
| 27 | <link rel="stylesheet" href="css/material-symbols-outlined.css"> |
| 28 | <link rel="stylesheet" href="css/md-filled-text-field.css"> |
| 29 | <link rel="stylesheet" href="css/md-filled-button.css"> |
| 30 | |
| 31 | </head> |
| 32 | |
| 33 | <body> |
| 34 | |
| 35 | <form> |
| 36 | |
| 37 | <md-app-bar adicional="tab"> |
| 38 | |
| 39 | <h1>Select</h1> |
| 40 | |
| 41 | </md-app-bar> |
| 42 | |
| 43 | <nav-tab-fixed id="tab"></nav-tab-fixed> |
| 44 | |
| 45 | <section> |
| 46 | |
| 47 | <p> |
| 48 | <span id="etiquetaGrupo" class="md-filled-text-field" accesskey="G"> |
| 49 | <md-select-menu name="grupo" required value="IC21" |
| 50 | aria-labelledby="etiquetaGrupo" |
| 51 | options="opcionesDeGrupo"></md-select-menu> |
| 52 | <span>Grupo *</span> |
| 53 | <small>Obligatorio</small> |
| 54 | </span> |
| 55 | </p> |
| 56 | |
| 57 | <p> |
| 58 | <button class="md-filled-button" style="width: 100%;">Enviar</button> |
| 59 | </p> |
| 60 | |
| 61 | </section> |
| 62 | |
| 63 | <md-options-menu id="opcionesDeGrupo" aria-label="Opciones de grupo"> |
| 64 | <span data-value="" title="Selecciona opción"></span> |
| 65 | <span data-value="IC21">IC-21</span> |
| 66 | <span data-value="IC22">IC-22</span> |
| 67 | <span data-value="IC23">IC-23</span> |
| 68 | </md-options-menu> |
| 69 | |
| 70 | </form> |
| 71 | |
| 72 | </body> |
| 73 | |
| 74 | </html> |