function change_login_type() {
if (password.type == "password") {
password.type = "text";
iconeye.src = "/static/img/eye_off.svg";
} else {
password.type = "password";
iconeye.src = "/static/img/eye.svg";
}
}
var iconeye = document.getElementById("eye");
var password = document.getElementById("password")
if (password.type == "password") {
password.type = "text";
iconeye.src = "/static/img/eye_off.svg";
} else {
password.type = "password";
iconeye.src = "/static/img/eye.svg";
}
}
var iconeye = document.getElementById("eye");
var password = document.getElementById("password")











本站有权保留或删除有争议评论。 参与本评论即表明您已经阅读并接受上述条款。