The following files exists in this folder. Click to view.
passShow.js
8 lines ASCII Unix (LF)
1
2
3
4
5
6
7
8
function passShow() { var x = document.getElementById("pass"); if (x.type === "password") { x.type = "text"; } else { x.type = "password"; }}