diff --git a/gui/index.html b/gui/index.html
index bbc0f4a..d88de70 100644
--- a/gui/index.html
+++ b/gui/index.html
@@ -42,9 +42,7 @@
-
+
diff --git a/gui/main.js b/gui/main.js
index 33eed47..e291500 100644
--- a/gui/main.js
+++ b/gui/main.js
@@ -132,4 +132,10 @@ document.addEventListener("DOMContentLoaded", function () {
.then(r => r.text())
.then(text => window.alert(text))
})
+
+ document.getElementById("check-questions").addEventListener("click", function() {
+ fetch('/check_questions')
+ .then(r => r.text())
+ .then(text => window.alert(text))
+ })
})
\ No newline at end of file