我正在尝试将“设计/会话/新”中的设计登录页面呈现到我的应用程序布局中,但我想知道该怎么做?
如果我这样做:
<%= render "devise/sessions/new" %>
我收到一个错误:
ActionView::MissingTemplate in Static#index
Missing partial devise/sessions/new with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :coffee]}. Searched in:
如果我试试这个:
<%= render :template => "devise/sessions/new" %>
我收到一个错误:
NameError in Users#show
undefined local variable or method `resource'
我有这个表格的地方:
<%= form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f| %>
如果可能的话,我只是想将登录表单带入我的应用程序布局。