| 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>Relaciones a uno</title> |
| 10 | |
| 11 | <script src="dompurify/purify.min.js"></script> |
| 12 | <script type="module" src="libclienteweb/manejaErrores.js"></script> |
| 13 | |
| 14 | </head> |
| 15 | |
| 16 | <body> |
| 17 | |
| 18 | <h1>Relaciones a uno</h1> |
| 19 | |
| 20 | <p><a href="agrega.html">Agregar</a></p> |
| 21 | |
| 22 | <dl id="lista"> |
| 23 | <dt>Cargando…</dt> |
| 24 | <dd><progress max="100">Cargando…</progress></dd> |
| 25 | </dl> |
| 26 | |
| 27 | <script type="module"> |
| 28 | |
| 29 | import { descargaVista } from "./libclienteweb/descargaVista.js" |
| 30 | |
| 31 | descargaVista("api/amigo-vista-index.php") |
| 32 | |
| 33 | </script> |
| 34 | |
| 35 | </body> |
| 36 | |
| 37 | </html> |