HTML
|
JavaScript
Alignment
Basics
Character Codes
Colors
CSS
DIVS
Forms
Frames
Links
Lists and Bullets
Meta Tags
Multimedia
Pictures
Spacing
Tables
Text
Checkbox
Disable a Field
Field Length
Field Size
Hidden Field
Image Button
Initial Value
Password Field
Radio Button
Reset Button
Selection List
Submit Button
Text Field
Textarea
Password Field
290
Password Field
Description
The tag to put a password field on your web site is <INPUT TYPE="PASSWORD" NAME="XXXX">. XXXX is replaced with the name of the password field.
Code
<FORM METHOD="POST" ACTION="script.cgi">
<INPUT TYPE="PASSWORD" NAME="pass1">
</FORM>
Output
Practice
<FORM METHOD="POST" ACTION="script.cgi"> <INPUT TYPE="PASSWORD" NAME="pass1"> </FORM>
Advertisements