Password Field
From the menu go to: Insert > Forms > Password

Use to create a password field on a HTML page. When you type characters in a password field, the browser displays asterisks or bullets instead of the characters.

Example:

<form>
Username: <input type="text" name="user"><br>
Password: <input type="password" name="password">
</form>

Result:
Username:
Password: 


See Also: Form Samples