


To create a single-line entry field, use the following syntax:
<INPUT TYPE="{TEXT|PASSWORD}" NAME="name"
[VALUE="default_text"][SIZE="width,height"] [MAXLENGTH="width"]>
where:
| TYPE
| selects the type of input field (text box or password box).
|
| NAME
| assigns a name to the field.
|
| VALUE
| assigns default text that will be entered in the box when the form is
displayed.
|
| SIZE
| specifies a width and height (in characters) for the box (default is width 20
and height 1).
|
| MAXLENGTH
| specifies the maximum number of characters that may be entered.
|