<html>
<body>
<form>
Username: <input type="text" id="usrname"><br>
Password: <input type="password" id="myPsw">
</form><br>
<button onclick="disablePsw()">Disable Password field</button>
<button onclick="undisablePsw()">Undisable Password field</button>
<script>
function disablePsw() {
document.getElementById("myPsw").disabled = true;
}
function undisablePsw() {
document.getElementById("myPsw").disabled = false;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_password_disabled3 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:17:18 GMT -->
</html>