+// show password toggle
+ document.getElementById('show_password').innerHTML = EYE_OPEN;
+ document.getElementById('show_password')?.addEventListener('click', function() {
+ const pwd = document.getElementById('input_key');
+ const show_password = pwd.type === 'text';
+ const next_show_password_toggle_value = !show_password;
+ if (next_show_password_toggle_value) {
+ pwd.type = 'text';
+ document.getElementById('show_password').setAttribute('data-show-enabled', true);
+ // symbol eye strikethrough
+ document.getElementById('show_password').innerHTML = EYE_CLOSE;
+ } else {
+ pwd.type = 'password';
+ // symbol eye
+ document.getElementById('show_password').innerHTML = EYE_OPEN;
+ }
+ });