Hello mate,
I'm building the authentication module and here is pretty much a
sample of my code:
.....
db.user_account.email.requires=IS_NOT_EMPTY()
form=SQLFORM(db.person,fields=['email','password'])
if FORM.accepts(form,request.vars,session):
users=db(db.user_account.email==form.vars.email),
(db.user_account.password==form.vars.password).select
()
.......
I wonder if you know a better and solid way to build a registration
page with Web2py ? Sorry if you find my question basic I'm a new
learner of this framework...
Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"web2py Web Framework" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---