// --------------------- // Password // --------------------- var pwShown = 0; function showHidePwd(thePwd){ var p = document.getElementById(thePwd); // alert('test'); if (pwShown == 0){ pwShown = 1; p.setAttribute('type', 'text'); document.getElementById('eye').setAttribute("class","fa-duotone fa-eye-slash"); document.getElementById('eye').className="fa-duotone fa-eye-slash"; } else{ pwShown = 0; p.setAttribute('type', 'password'); document.getElementById('eye').setAttribute("class","fad fa-eye"); document.getElementById('eye').className="fa-duotone fa-eye"; } }