CINXE.COM

<html> <head> <script> const url = window.location; const urlObject = new URL(url); //It prevents infinite loop redirections because of invalid URLs if(urlObject.searchParams.has('url') && urlObject.pathname.includes('dash-proxy')){ console.error(`Invalid URL ${url}`); window.location = urlObject.origin + "/dash-proxy?url=" + encodeURIComponent(urlObject.origin); }else{ console.log(urlObject.origin + "/dash-proxy?url=" + url); window.location = urlObject.origin + "/dash-proxy?url=" + encodeURIComponent(url); } </script> </head> <body> Redirecting to login... </body> </html>