To access this page, you must be a registered member. Learn more about our membership plans or log in below if you are already registered:
const togglePassword = document.querySelector('#togglePassword');
const password = document.querySelector('#pwd');
togglePassword.addEventListener('click', function (e) {
const type = password.getAttribute('type') === 'password' ? 'text' : 'password';
password.setAttribute('type', type);
this.classList.toggle('bi-eye');
});
... if you need to reset your password, please enter your registered email address below and click "restore":