By Administrator
02 – Institutionelle Mitgliedschaft
Institutionelle Mitgliedschaft
Jahresbeitrag min 150,00 €
Betrag: 150,00 EUR
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"); });