How to separate element from a form in a view ?
{{= form }}
make the whole form.

But i i want to use it one by one for css ?
is there a way to do it like :
{{= form.Email }} 

Regards
Bussiere

here is my form :
    form2 = FORM(
TABLE(
        TR(
            TD(
    
                    LABEL('Email : ')
                    ),
                TD( 
                    INPUT(_name='Email')
                    )
            ),
        TR(
            TD(
    
                    LABEL('Age : ')
                    ),
                TD( 
                    INPUT(_name='Age')
                    )
            ),
        TR(
        TD(
            LABEL('Password : ')
            ), 
        TD(
            INPUT(_name='password1',_type='password')
            )
        ),

     TR(
        TD(
            LABEL('Password verification : ')
            ), 
        TD(
            INPUT(_name='password2',_type='password')
            )
        ),
     TR(INPUT(_type='submit'))
    )
)

Reply via email to