Reset Password

Enter your email to reset your password

Forgot Password?

Don't worry! Enter your email and we'll help you reset it

function calculatePasswordStrength(password) { let strength = 0; if (password.length >= 8) strength++; if (password.match(/[a-z]+/)) strength++; if (password.match(/[A-Z]+/)) strength++; if (password.match(/[0-9]+/)) strength++; if (password.match(/[$@#&!]+/)) strength++; return strength; } // Auto-hide alerts after 5 seconds setTimeout(() => { const alerts = document.querySelectorAll('.alert'); alerts.forEach(alert => { alert.style.animation = 'slideOut 0.3s ease-out'; setTimeout(() => alert.remove(), 300); }); }, 5000);