Image Geting Icons




    
const image = document.querySelector("img");
const input = document.querySelector("input");
input.addEventListener("change",()=>{
image.src = URL.createObjectURL(input.files[0]);
});

Show / Hide Password Button



Click To See passwords

    
check.onclick = togglePassword;
function togglePassword(){
    if(check.checked){
        pass.type = "text";
    } 
    else{
        pass.type = "password";
    } 
}


Color Picker

    
const colorPicker = document.getElementById("color-picker");
const icon = document.querySelector(".icon");
colorPicker.addEventListener("input", function (e) {
icon.style.color = `${e.target.value}`;
});