HTML <input> type Attribute
Example
<input type="password" name="paswd">
Meaning
A single-line text field whose value is obscured. Will alert user if site is not secure.
Standard Syntax
HTML: <input type="password">
XHTML: <input type="password" />
Advertisement