Create Your Account

Join thousands of satisfied BingeTV subscribers

Password strength
Chat with us
document.getElementById('confirm_password').addEventListener('input', function() { const password = document.getElementById('password').value; const confirmPassword = this.value; if (confirmPassword && password !== confirmPassword) { this.style.borderColor = '#ef4444'; } else { this.style.borderColor = '#d1d5db'; } });