Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 10: Utilizing Forms with JavaScript!

Instruction

Password Field

One of the original input types was the password text field type: <input type="password" id="pwd" name="pwd" /> The password value doesn't add any special constraints to the entered text, but it does obscure the value entered into the field (e.g. with dots or asterisks) so it can't be easily read by others. Keep in mind this is just a user interface feature; unless you submit your f...