I was wondering whether it was possible to have two forms on the same page which maps to two different controllers in a rails application
In my routes file, I mapped the root route to new action of the user controllers
root to: 'users#new'
The new page basically renders a signup form.

On the header of the same page, I happen to have a login in form which I am intending on routing to another controller

The signup form currently re-directs to the proper controller#action but was wondering if I could direct the login to a whole new controller/action