HTML form – Password Text Field
In some cases such as login system, the HTML form should contains a text field for the user to type in the password. But when the user types in the password, other might see the password from behind the user. To avoid from this happening, a password text field is needed. A password text field works when the user type the password into the text field, every character will turn into *.
Here are the codes:
1 | <input type="password" name="passwordfield"> |
Try to type something here:





Add A Comment