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?

link|improve this question

feedback

2 Answers

up vote 39 down vote accepted

You can subclass the controller and configure the router to use that:

class SessionsController < Devise::SessionsController
  layout false
end

And in config/routes.rb:

devise_for :users, :controllers => { :sessions => "sessions" }

You need to move the session views to this controller too.

OR make a method in app/controllers/application_controller.rb:

class ApplicationController < ActionController::Base

  layout :layout

  private

  def layout
    # only turn it off for login pages:
    is_a?(Devise::SessionsController) ? false : "application"
    # or turn layout off for every devise controller:
    devise_controller? && "application"
  end

end
link|improve this answer
1  
Thanks; your second method was just what I was looking for! – neezer Dec 10 '10 at 19:01
Thanks for the tip, that really helped me. However, only this line worked for me is_a?(Devise::SessionsController) ? false : "application" – Jesper Rønn-Jensen Mar 21 at 20:58
feedback

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.

link|improve this answer
1  
Thanks!! Though I think this is not actually answering the question, it was exactly what I was looking for :) – dgilperez Dec 11 '11 at 20:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.