I'm using a javascript framework that provides it's own login page and
submits authentication requests using HTTP POST with the username and
password to a url that I can specify. I've also created my own login
method that checks the supplied username and password against a local
database that's not part of web2py. In addition to the above, I'd like
to be able to use the decorator @auth.requires_login() for functions
that requires the user to be logged in. For authentication, when I
post the username and password to http://.../[app]/default/user/login
my custom login method does not seem to be provided the username and
password. If I'm not using web2py's forms, is this still possible?