Rolling 20220919

This commit is contained in:
jomjol
2022-09-19 22:07:16 +02:00
parent 013d5a99a8
commit 562cc4352b
2 changed files with 49 additions and 34 deletions

View File

@@ -0,0 +1,11 @@
<body style='font-family: arial'>
<h3 id=t></h3>
</body>
<script>
var h='Rebooting!<br>The page will automatically reload after around 25s.<br>';
document.getElementById('t').innerHTML=h;
setInterval(function (){h +='.';
document.getElementById('t').innerHTML=h;
fetch(window.location.hostname,{mode: 'no-cors'}).then(r=>{parent.location.href=('/index.html');})}, 1000);
</script>