[web2py] Re: how to create login form

2012-04-26 Thread Vibhor Purandare
Thank's On Thursday, April 26, 2012 6:46:21 PM UTC+5:30, Anthony wrote: > > You can customize it the same way as any SQLFORM. First, you can change > the formstyle via the auth.settings.formstyle setting (default is > table3cols, but you can change it to table2cols, divs, or ul). If you need >

[web2py] Re: how to create login form

2012-04-26 Thread Anthony
You can customize it the same way as any SQLFORM. First, you can change the formstyle via the auth.settings.formstyle setting (default is table3cols, but you can change it to table2cols, divs, or ul). If you need more customization, see http://web2py.com/books/default/chapter/29/7#Custom-forms .

[web2py] Re: how to create login form

2012-04-26 Thread Vibhor Purandare
How to change the layout representation of auth login form

[web2py] Re: how to create login form

2012-04-25 Thread Anthony
Also, simply doing form=auth() will produce a login form if the first arg in the URL (i.e., request.args(0)) is "login". The user() function in the default.py controller of the "welcome" app works this way. form=auth() will generate different auth forms depending on the value of request.args(0

[web2py] Re: how to create login form

2012-04-25 Thread Massimo Di Pierro
form=auth.login() On Wednesday, 25 April 2012 04:53:52 UTC-5, Vibhor Purandare wrote: > > > How to create log In form in web2py >