Giriş

Hesap bilgilerinizi giriniz.


function myFunction() { var x = document.getElementById("sifre"); if (x.type === "password") { x.type = "text"; } else { x.type = "password"; } }