Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
const pswrdField = document.querySelector(".form input[type='password']"),
toggleIcon = document.querySelector(".form .field i");
toggleIcon.onclick = () =>{
if(pswrdField.type === "password"){
pswrdField.type = "text";
toggleIcon.classList.add("active");
}else{
pswrdField.type = "password";
toggleIcon.classList.remove("active");
}
}