I know this is probably a simple question, but I'm still trying to figure Devise out...
I want to render :layout => false on my login page; how can I do this with Devise?
|
|
|
You can subclass the controller and configure the router to use that:
And in
You need to move the session views to this controller too. OR make a method in
|
|||||||||||
|
|
You can also create a sessions.html.erb file in app/views/layouts/devise. That layout will then be used for just the sign in screen. |
|||