The problem is your routes file. You're not doing sessions restfully. So the <%form_for @user_session%>
won't know how to create a url.
Adding map.resource: user_session
to routes.rb should fix your problem.
You should read through the restful_authentication plugin's documentation.
EmFi
2009-10-20 16:39:56