What I meant was breaking the form down to pieces and put them at the appropriate places. Like,
<tr> <td> 'Name :' comes here </td> <td> INPUT _name comes here</td> </tr> <tr> <td> 'Password :'</td> <td> INPUT _password </td> etc. On Thu, Feb 10, 2011 at 7:37 PM, Bruno Rocha <[email protected]> wrote: >>>> form = FORM() >>>> form.element().append(LABEL(_for='name',_value='Name')) >>>> form.element().append(INPUT(_type='text',_name='name')) >>>> print form > <form action="" enctype="multipart/form-data" method="post"><label > for="name" value="Name"></label><input name="name" type="text" /></form> > --- > Bruno Rocha > http://about.me/rochacbruno/bio > >

