Updated web pages

This commit is contained in:
David J. Allen 2024-02-24 21:03:51 -07:00
parent df717b480a
commit 5fa17355a6
No known key found for this signature in database
GPG key ID: 717C593FF60A2ACC
2 changed files with 14 additions and 0 deletions

View file

@ -1,4 +1,16 @@
<!DOCTYPE html>
<html>
Redirecting you to sign-in page...
<script>
function _sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
async function sleep(s) {
for (let i = 0; i < 5; i++) {
await sleep(i * 1000)
}
}
sleep(5000)
window.location.replace("{{loginUrl}}")
</script>
</html>