How to custom the deform Form?

678 views Asked by At

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?

1

There are 1 answers

0
Crooksey On

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)