TEXT and PASSWORD inputs for forms


Size sets width of the text input in characters





Maxlength sets the maximum number of characters you can enter

Size=10 max=20
Size=20 max=20
Size=20 max=10
Size=20 max=10


The ID attribute works with style sheets to choose a text style. (FONT tags work too)

Not all features seem to work though; I couldn't get the color to work.

id = Bold
id = Big
This used a font tag which only partly works


The PASSWORD input is like the TEXT input except the characters can't be seen as you type them in (they are replaced with "*" characters.) WARNING: If you use the get method to submit a PASSWORD input the data will be visible in the query string!