mirror of
https://github.com/davidallendj/opaal.git
synced 2025-12-20 11:37:01 -07:00
16 lines
No EOL
326 B
HTML
16 lines
No EOL
326 B
HTML
<!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> |