By Administrator
01 – Private Mitgliedschaft
Private Mitgliedschaft
Jahresbeitrag min. € 40,00
Betrag: 40,00 Euro incl. MwSt
Login
Sie sind bereits Mitglied, dann loggen Sie sich hier ein:
const togglePassword = document.querySelector("#togglePassword"); const password = document.querySelector("#user_pass");
togglePassword.addEventListener("click", function () { // toggle the type attribute
const type = password.getAttribute("type") === "password" ? "text" : "password"; password.setAttribute("type", type);
// toggle the icon this.classList.toggle("bi-eye"); });