diff --git a/main_view.html b/main_view.html index 948df81..de5f199 100644 --- a/main_view.html +++ b/main_view.html @@ -19,17 +19,21 @@ async function onReady() { await log("got here"); + + let heading = document.getElementById("heading"); + let id = getUID(); + heading.innerText = `Hello ${id}`; + let status = document.getElementById("status"); let install_status = await getInstallState(); status.innerText = install_status; await log(install_status); } - - onReady(); +

Hello World

Status: loading

@@ -41,8 +45,4 @@
- -