From 24b1e341b2e580907fc386318b8326c7a680fc88 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Thu, 15 May 2025 11:12:21 +0200 Subject: [PATCH] added fieldset to ask for progress in case the user reloads the page --- public/index.html | 9 +++++++++ public/js/index.js | 4 ++++ 2 files changed, 13 insertions(+) diff --git a/public/index.html b/public/index.html index 6adad7b..e15336c 100644 --- a/public/index.html +++ b/public/index.html @@ -51,6 +51,15 @@ +
+ Get status of ongoing process + + +

+ + +
+

Processing answers...

diff --git a/public/js/index.js b/public/js/index.js index 24f5886..656f6a9 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -151,3 +151,7 @@ modalOverlay.addEventListener("click", (e) => { modalOverlay.classList.add("hidden"); } }); + +document.getElementById("request-status").onclick = () => { + url.reportValidity(); +};