This website uses cookies. Using this website means you are ok with this but you can learn more about our cookie policy and how to manage your cookie choices here
X
function myFunction() {
var x = document.getElementById("myInput");
if (x.type === "password") {
x.type = "text";
} else {
x.type = "password";
}
}