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>Render en el servidor</title> |
10 | |
11 | <script type="module" src="lib/js/consumeJson.js"></script> |
12 | <script type="module" src="lib/js/muestraObjeto.js"></script> |
13 | <script type="module" src="lib/js/muestraError.js"></script> |
14 | |
15 | </head> |
16 | |
17 | <body onload="consumeJson('srv/render.php') |
18 | .then(respuesta => muestraObjeto(document, respuesta.body)) |
19 | .catch(muestraError)"> |
20 | |
21 | <h1>Render en el servidor</h1> |
22 | |
23 | <dl id="lista"> |
24 | <dt>Cargando…</dt> |
25 | <dd><progress max="100">Cargando…</progress></dd> |
26 | </dl> |
27 | |
28 | </body> |
29 | |
30 | </html> |