I tried testing to see if using {{=form}} and just using the venilla form produced by auth would work. It seems that auth is just not inserting new users into the db no matter what I do...whether I just use {{=form}} or I customize my own... How do I check where auth is getting stuck?
On May 4, 6:26 am, waTR <r...@devshell.org> wrote: > Can someone point me to some examples of usage of form.custom.widget > for auth? I am looking for example code. > > On May 3, 5:59 pm, waTR <r...@devshell.org> wrote: > > > Solved previous problem. However, the form won't actually insert into > > the database...am I missing something? > > > On May 3, 5:36 pm, waTR <r...@devshell.org> wrote: > > > > Strange behaviour in view: > > > > I can't seem to use password_two using custom form. It doesn't show up > > > as a text-box. It simply shows up as the word "None". > > > > On May 3, 5:20 pm, waTR <r...@devshell.org> wrote: > > > > > Correction: > > > > Instead of register["_class"] = "bla", do: > > > > register.element(_name='fieldNAME')['_class'] = "custom_css_classes" > > > > > On May 3, 5:18 pm, waTR <r...@devshell.org> wrote: > > > > > > The way to do it is to do the following in the controller: > > > > > > register = auth.register() > > > > > login = auth.login() > > > > > > Then, you can use: > > > > > register["_class"] = "custome_css_classes" > > > > > > and same for login. Then I simply pass a "return > > > > > dict(register=register, login=login)", and I have two forms available > > > > > for me to use "{{=register.custom.widget.bla}}" with in view. > > > > > > On May 3, 5:07 pm, waTR <r...@devshell.org> wrote: > > > > > > > Is there any way to use form.custom.widget with AUTH.register() and > > > > > > AUTH.login() ? > > > > > > > I have a design I am trying to plug my code into, and wanted to try > > > > > > not re-writing the login/register stuff this time.