Account activated

Your account was created successfully. You will be redirected shortly.

If nothing happens, click here.
Already have an account?

Verification Required

Account verification required. Please check your email to find your unique verification link.

document.addEventListener('DOMContentLoaded', () => { // Check for a successful login event or token const isLoggedIn = !!localStorage.getItem('userLoggedIn'); // Example check for a login flag if (!isLoggedIn) { // Assuming the login button or form has an ID 'loginButton' const loginButton = document.getElementById('loginButton'); if (loginButton) { loginButton.addEventListener('click', () => { // Simulate a login action (replace this with your actual login logic) localStorage.setItem('userLoggedIn', true); // Mark the user as logged in setTimeout(() => { location.reload(); // Reload the page after login }, 500); // Optional delay to ensure login completes }); } } else { console.log('User is already logged in.'); } });