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