= FormField =
Manipulators create a "field" attribute that is used to describe the entries in an html form. Each field class takes a list of arguments in its initializer.
The first argument to all field initializers is the ''field_name''. This is the name that is attached to the field's input.
== Generic Widgets ==
* '''TextField'''
* field_name, length=30, maxlength=None, is_required=False, validator_list=[], member_name=None
*
* '''PasswordField'''
* field_name, length=30, maxlength=None, is_required=False, validator_list=[], member_name=None
*
* '''LargeTextField'''
* field_name, rows=10, cols=40, is_required=False, validator_list=[], maxlength=None
*