Creates a single-line text input control, with the text rendered in such a way as to hide the real characters.
The text content of the control will be masked in the browser, and the entered characters appear as blobs, vertical lines or asterisks.
<form action="" method="post">
User Name: <input type="text" name="userName" />
<br />
Password: <input type="password" name="password" />
<br />
<input type="reset" value="Reset" />
<input type="submit" value="Sign in" />
</form>