Thank you Massimo.
I'm using a DAL table for users
db.define_table('users',
> db.Field('name', 'string'),
> db.Field('password', 'password')
> )How should I go about it? Also I'd like the same for non user-pages like http://my_site.com/my_page

