I have this simple form where you put your name and address in to place an order. http://www.pastie.org/1664006
The problem now is how do I lock this down? I followed the book and added "@auth.requires_login()" to my default controller. That works as in protecting the page, but I have 3 types of users planned for my web app. So that would require 3 different types of registration forms but how can I tie these users to the auth table where I can say, requires_login but also has an user_type of "lender" , "staff" or "vendor" ?

