// #139: unlock page: password reveal toggle. document.getElementById('pwreveal').addEventListener('click', () => { const pw = document.getElementById('password'); const show = pw.type === 'password'; pw.type = show ? 'text' : 'password'; document.getElementById('pwreveal').title = show ? 'Hide password' : 'Show password'; });