Creates a single-line text input control.
If you need a multiline text input control, see the page for the textArea attribute.
<form method="post" action="">
Username: <input type="text" name="userName" />
<br />
Password: <input type="password" name="password" />
<br /><br />
<input type="reset" value="Reset to initial state" />
<br />
<input type="submit" value="Sign in" />
</form>