Create a New Account

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Already have an account? Login here.

// Debug reCAPTCHA loading window.addEventListener('load', function() { console.log('Page loaded, checking reCAPTCHA...'); // Check if grecaptcha is loaded if (typeof grecaptcha !== 'undefined') { console.log('✅ reCAPTCHA loaded successfully'); // Force badge visibility setTimeout(function() { const badge = document.querySelector('.grecaptcha-badge'); if (badge) { console.log('✅ Badge found, making it visible'); badge.style.visibility = 'visible'; badge.style.opacity = '1'; badge.style.position = 'fixed'; badge.style.bottom = '14px'; badge.style.right = '14px'; badge.style.zIndex = '9999'; } else { console.log('❌ Badge not found'); } }, 1000); } else { console.log('❌ reCAPTCHA not loaded'); } });