Skip to content
Snippets Groups Projects
index.js 573 B
Newer Older
Suriya Ravichandran's avatar
Suriya Ravichandran committed
document.addEventListener("DOMContentLoaded", function() {
    const pswrdFieldSignup = document.querySelector(".formsignup .field-pass input[type='password']");
    const toggleBtnSignup = document.querySelector(".formsignup .field-pass i");

    toggleBtnSignup.onclick = () => {
        if (pswrdFieldSignup.type === "password") {
            pswrdFieldSignup.type = "text";
            toggleBtnSignup.classList.add("active");
        } else {
            pswrdFieldSignup.type = "password";
            toggleBtnSignup.classList.remove("active");
        }
    };
});