Prevent shutdown page from multiple shutdowns

This commit is contained in:
Taylor Helsper 2020-02-22 22:16:27 -06:00
parent 8d49e56d6f
commit 111ce603e4

View File

@ -4,8 +4,12 @@
{% include 'includes/head.html' %}
<script>
function redirectHome() {
window.location.replace("/");
}
$(document).ready(function() {
setInterval(checkStatus, 30000);
setInterval(redirectHome, 30000);
});
</script>