| 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>Agregar</title> |
| 10 | |
| 11 | <script type="module" src="lib/js/consumeJson.js"></script> |
| 12 | <script type="module" src="lib/js/submitForm.js"></script> |
| 13 | <script type="module" src="lib/js/muestraObjeto.js"></script> |
| 14 | <script type="module" src="lib/js/muestraError.js"></script> |
| 15 | |
| 16 | </head> |
| 17 | |
| 18 | <body onload="consumeJson('srv/rol-checkboxes.php') |
| 19 | .then(chackBoxes => muestraObjeto(document, chackBoxes.body)) |
| 20 | .catch(muestraError)"> |
| 21 | |
| 22 | <form onsubmit="submitForm('srv/usuario-agrega.php', event) |
| 23 | .then(modelo => location.href = 'index.html') |
| 24 | .catch(muestraError)"> |
| 25 | |
| 26 | <h1>Agregar</h1> |
| 27 | |
| 28 | <p><a href="index.html">Cancelar</a></p> |
| 29 | |
| 30 | <p> |
| 31 | <label> |
| 32 | |
| 33 | Cue * |
| 34 | <input name="cue"> |
| 35 | </label> |
| 36 | </p> |
| 37 | |
| 38 | <fieldset> |
| 39 | |
| 40 | <legend>Roles</legend> |
| 41 | |
| 42 | <div id="roles"> |
| 43 | <progress max="100">Cargando…</progress> |
| 44 | </div> |
| 45 | |
| 46 | </fieldset> |
| 47 | |
| 48 | <p>* Obligatorio</p> |
| 49 | |
| 50 | <p><button type="submit">Agregar</button></p> |
| 51 | |
| 52 | </form> |
| 53 | |
| 54 | </body> |
| 55 | |
| 56 | </html> |