const image = document.querySelector("img");
const input = document.querySelector("input");
input.addEventListener("change",()=>{
image.src = URL.createObjectURL(input.files[0]);
});
Click To See passwords
check.onclick = togglePassword;
function togglePassword(){
if(check.checked){
pass.type = "text";
}
else{
pass.type = "password";
}
}
const colorPicker = document.getElementById("color-picker");
const icon = document.querySelector(".icon");
colorPicker.addEventListener("input", function (e) {
icon.style.color = `${e.target.value}`;
});