LP1977554 - Add Password visibility toggle on login screens
[evergreen-equinox.git] / Open-ILS / src / templates-bootstrap / opac / parts / base.tt2
index bff11bd..0e8d2b1 100755 (executable)
                     input.type == 'password' ? [input.type = 'text', icon.setAttribute('class','fas fa-eye')] : [input.type = 'password', icon.setAttribute('class', 'fas fa-eye-slash')];
                     input.focus();
                 });
+                let loginForm = document.getElementById('login_form');
+                loginForm.addEventListener('submit', ()=>{
+                    input.type = 'password';
+                });
                        });
                </script>