<div id='panel' style="display: block; padding: 10px; border: 1px solid beige; border-radius: 10px;"> <div style='display: block; text-align: center;'> <!-- Account Request Redirect --> <ins class="adsbygoogle" style="display:inline-block;width:300px;height:250px" data-ad-client="ca-pub-7151582089386175" data-ad-slot="5026204773"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div style=' background: beige; color: black; padding: 3px 5px; border-radius: 10px;'> <p style="text-align: center;">Retrieving your account requests informations..</p> <p id='email' style="text-align: center;"></p> <p id='account' style="text-align: center;"></p> </div> <div style='display: block; text-align: center;'> <!-- Account Request Redirect --> <ins class="adsbygoogle" style="display:inline-block;width:100%;height:90px" data-ad-client="ca-pub-7151582089386175" data-ad-slot="5026204773"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <button id='btn_proceed' style='display: none; margin: 0 auto;' class="ui big teal button">Proceed</button> </div> <script type='module'> window.addEventListener('load', async() => { // wait for 10 seconds... await initFunctions(['FirebaseModule']); await sleep(5000); const btn_proceed = document.getElementById('btn_proceed'); const p_email = document.getElementById('email'); const p_account = document.getElementById('account'); const db = `https://storehaccounts-website-default-rtdb.firebaseio.com`; // do the things here // extract request parameter and get the code let email = getParameter('email'); let cname = getParameter('cname'); let fname = getParameter('fname'); if (!email || !cname || !fname) return; if (localStorage.getItem('account_request_ongoing')) { // delete the existing old record. await FirebaseModule.patch(`${db}/link_registration/${localStorage.getItem('account_request_ongoing')}.json`, "null" ); await FirebaseModule.patch(`${db}/link_terminal/${localStorage.getItem('account_request_ongoing')}.json`, "null" ); localStorage.removeItem('account_request_ongoing'); } p_email.innerText = `Email: ${atob(email)}`; await sleep(2000); p_account.innerText = `Account Type: ${atob(fname).split('-27-')[2]} ${atob(fname).split('-27-')[3]}`; await sleep(2000); // main await addCode(); async function addEntry() { let key = new Date().getTime(); await FirebaseModule.patch(`${db}/link_registration.json`, JSON.stringify({ [key]: await getCountryName() }) ); return key; } async function addCode() { let key = await addEntry(); await FirebaseModule.patch(`${db}/link_terminal.json`, JSON.stringify({ [key]: { email: email, cname: cname, fname: fname, goal: 12, prog: 0, auth: key.toString() } }) ); localStorage.setItem('account_request_ongoing', key); btn_proceed.style.display = 'block'; btn_proceed.addEventListener('click', () => { btn_proceed.style.pointerEvents = 'none'; btn_proceed.innerText = "Proceeding..."; window.location.href = `https://storehaccounts.blogspot.com/p/account-bypass-progress.html?code=${key}`; }); } async function getCountryName() { let ip_json = await fetch('https://api.ipify.org?format=json'); let ip_add_data = await ip_json.json(); let country_json = await fetch(`https://ipapi.co/${ip_add_data.ip}/json/`); let country_data = await country_json.json(); let country_name = country_data.country_name; return country_name; } 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); </script>