我正在为简单的登录和注册表单添加 simple_form 格式。
虽然注册表单格式正确 - 登录表没有输入?
登录表格
我的代码可在 github(此处)上找到,其中包含此错误的最新版本已推送。对新手有什么想法吗?
我正在为简单的登录和注册表单添加 simple_form 格式。
虽然注册表单格式正确 - 登录表没有输入?
登录表格
我的代码可在 github(此处)上找到,其中包含此错误的最新版本已推送。对新手有什么想法吗?
替换<%
为语句<%=
旁边的。f.input
<h2>Sign in</h2>
<%= simple_form_for(resource, :as => resource_name, :url => session_path(resource_name), html: { class: 'form-horizontal'}) do |f| %>
<%= f.input :email %>
<%= f.input :password %>
<%= f.input :remember_me, as: :boolean %>
<div class="form-actions">
<%= f.submit "Sign in", class: "btn btn-primary" %>
</div>
<% end %>
<%= render "devise/shared/links" %>