Last active
October 14, 2020 18:37
-
-
Save eheiser/d2d755594b04f05b43045fbd1980ad17 to your computer and use it in GitHub Desktop.
Vanilla js day 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Vanilla js project 2</title> | |
</head> | |
<body> | |
<!-- When a user clicks on the #show-passwords checkbox, it should show the text for the #current-password and #new-password fields if it’s checked, and mask it if it’s unchecked. --> | |
<form> | |
<div> | |
<label for="current-password">Current Password</label> | |
<input type="password" name="current-password" id="current-password"> | |
</div> | |
<div> | |
<label for="new-password">New Password</label> | |
<input type="password" name="new-password" id="new-password"> | |
</div> | |
<div> | |
<label for="show-passwords"> | |
<input type="checkbox" name="show-passwords" id="show-passwords"> | |
Show passwords | |
</label> | |
</div> | |
<p> | |
<button type="submit">Change Passwords</button> | |
</p> | |
</form> | |
<script> | |
// get my vars | |
var check = document.querySelector('#show-passwords'); | |
var inputs = document.querySelectorAll('input[type ="password"]'); | |
// make array from nodelist | |
let passwords = Array.from(inputs); | |
//define functions | |
var showText = function (input) { | |
input.type = 'text'; | |
return; | |
} | |
var maskText = function (input) { | |
input.type = 'password'; | |
return; | |
} | |
// add evenlistener and loop inputs when clicked | |
check.addEventListener('click', function(event){ | |
if (event.target.checked === true) { | |
passwords.forEach(function(item, index){ | |
showText(item); | |
}); | |
} | |
else { | |
passwords.forEach(function(item, index){ | |
maskText(item); | |
}); | |
} | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment