See the Forms and Validators section of the book.  You have total
flexibility if you want to go to the trouble of building your own
form.  Check out the Custom Forms section of that chapter.

On Feb 10, 12:45 pm, Panupat Chongstitwattana <panup...@gmail.com>
wrote:
> 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 <rochacbr...@gmail.com> 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
>
>

Reply via email to