HTML Advanced Functions
| Home |
Agenda | Next |
Input Fields - Continued
TYPE = "PASSWORD"
Optional: [VALUE, SIZE, MAXLENGTH]
Creates an input field which allows the user to enter a password.
Typed characters are represented with an "*".
Example:
<FORM>
password: <INPUT TYPE=password NAME=pw VALUE="pass" SIZE=5 MAXLENGTH=10>
</FORM>
VALUE: specifies text that will be the default, such as a group
password
SIZE: changes the length of the entry portion of the form
MAXLENTH: sets the maximum amount of text the user can type into
the entry
password:
| Home |
Agenda | Next |
T10D027