const toggleBtn = document.getElementById('toggleBtn');
const passwordField = document.getElementById('password');
toggleBtn.addEventListener('click', () => {
if (passwordField.type === 'password') {
passwordField.type = 'text';
toggleBtn.innerHTML = '';
} else {
passwordField.type = 'password';
toggleBtn.innerHTML = '';
}
});