increate timeout to 5s

This commit is contained in:
Karol Wypchlo 2022-05-20 15:01:38 +02:00
parent dc602054f2
commit d6bfb50516
No known key found for this signature in database
GPG Key ID: B515DE9EEBE241E1
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@
if (window.location.hostname.endsWith("${PORTAL_DOMAIN}")) { if (window.location.hostname.endsWith("${PORTAL_DOMAIN}")) {
setTimeout(function redirect() { setTimeout(function redirect() {
window.location.href = "https://account.${PORTAL_DOMAIN}/auth/login"; window.location.href = "https://account.${PORTAL_DOMAIN}/auth/login";
}, 3000); }, 5000); // redirect after 5 secons
} }
</script> </script>
</body> </body>