diff --git a/client/index.html b/client/index.html
index 4692d921..53699b9d 100644
--- a/client/index.html
+++ b/client/index.html
@@ -52,7 +52,10 @@
Loading the app… Make sure to have JavaScript enabled.
-
This is taking longer than it should, there might be connectivity issues.
+
+
This is taking longer than it should, there might be connectivity issues.
+
+
diff --git a/client/js/loading-slow-alert.js b/client/js/loading-slow-alert.js
index 9709fd86..debff175 100644
--- a/client/js/loading-slow-alert.js
+++ b/client/js/loading-slow-alert.js
@@ -15,3 +15,7 @@ setTimeout(function() {
element.style.display = "block";
}
}, 5000);
+
+document.getElementById("loading-slow-reload").addEventListener("click", function() {
+ location.reload();
+});