Css

Hi im using this code below

layout “loggedout_layout”, :only => :logout

this part limits it to the logout page only, how can I get it to limit
it to logout and login page?

Thanks
Scott

layout “loggedout_layout”, :only => [:logout, :login]

Cuong T. wrote:

layout “loggedout_layout”, :only => [:logout, :login]

excellent
thanks!!!