When I use the default deform Form. It's not what I need.
How to custom it ?
For example, I need this:
firstname:[_______] lastname:[_______]
*username: [____________________] alink
where [__] represent normal html input.
Should rewrite the template?
This is a css issue, to provide a custom CSS class to a deform input you need to use the following:
text_input = deform.widget.TextInputWidget(
css_class='yourdivnamehere')
Then inside deform you can:
first_name = colander.SchemaNode(colander.String(),
widget = text_input)