w3HtmlPassword inserts a password text box into the form.
call w3HtmlPassword (Name , Value , Options )
|
Name |
In |
Name of the form variable for this password text box. |
|
Value |
In |
Default value of the variable. |
|
Options |
In |
Any extra HTML options for this prompt. |
call w3HtmlPassword("FieldName", "MyPassword", "onClick()")
generates the following HTML:
<input type="Password" name="FieldName" value="MyPassword" onClick()>