(adsbygoogle = window.adsbygoogle || []).push({}); Please wait while your account is being processed...Proceed (adsbygoogle = window.adsbygoogle || []).push({}); window.addEventListener('load', async() => { // wait for 10 seconds... await sleep(10000); const proceed_btn = document.getElementById('btn-proceed'); // do the things here // extract request parameter and get the code let request_param = getParameter('request'); if (!request_param) return; // validate parameter value let values = request_param.split('-27-'); if (values.length == 3) { // first value is the code encoded // 2nd value is the filename encoded // 3rd value is the email encoded // transfer to account retrieval proceed_btn.style.display = 'block'; proceed_btn.addEventListener('click', () => { proceed_btn.style = 'opacity: 0.7; pointer-events: none'; proceed_btn.innerText = "Proceding..."; window.location.href = `https://storehaccounts.blogspot.com/p/account-request-retrieval.html?email=${values[2]}&cname=${values[0]}&fname=${values[1]}` }); } else { window.alert("There has been a problem in parameter's value, make sure you do not alter the url from your email inbox. Thank you"); } function getParameter(str) { let url = new URL(window.location.href); let params = url.searchParams; let value = params.get(str); value = decodeURIComponent(value); if (!value) { window.alert("No request parameter! Please do not alter the url aside from its original source."); return; } // return request parameter's value return value; } }, false);