Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 58 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
share|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 '12 at 20:58
1  
the second check should be !devise_controller? && "application" notice the not there. But otherwise this works like a charm :) – yagudaev Feb 25 at 20:27

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.

share|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
+1 Awesome answer – balanv Jul 4 '12 at 9:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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