My Account

Login

Register

Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our privacy policy.

document.addEventListener("DOMContentLoaded", function () { const lastShown = localStorage.getItem('referralModalLastShown'); const now = new Date().getTime(); const fourHours = 4 * 60 * 60 * 1000; // 4 hours in ms if (!lastShown || now - lastShown > fourHours) { setTimeout(function () { var modal = document.querySelector("#wpgen-ra-modal"); if (modal) { modal.style.display = "block"; localStorage.setItem('referralModalLastShown', now); } }, 5000); // 5 second delay } });