I want to render a different layout for signup and login pages.
There's s similar thread that deals with this problem, but it's not exactly the same.
I need to be able to render different layout just for signup and login pages only, not all the other actions in a controller.
under users/registrations_controller.rb
class Users::RegistrationsController < Devise::SessionsController
def new
render :layout => "auth"
end
end
My routes
MasterCard::Application.routes.draw do
devise_for :users, :controllers => { :registrations => "users/registrations" }, :path => "users", :path_names => { :sign_in => 'login', :sign_out => 'logout' }
devise_scope :user do
get "login", :to => "users/sessions#new"
# post "logout", :to => "users/sessions"
end
root :to => 'pages#home'
match '/about' => 'pages#about'
end
This is the error I get when i go to sign up page.
undefined methoderrors' for nil:NilClass`