0
我在頁面頂部的導航區域內爲我的網站使用簡單的表單來顯示基本登錄表單。使用simple_form限制表單的長度?
目前,它將表單域溢出兩行,無論我應用了多少個display: inline
屬性。它仍然拒絕回到一條線上。 我試圖做的是限制在窗體中的字符數,以便字段適合一行。
這是我目前的形式代碼..
<%= simple_form_for("user", :url => user_session_path, :html => {:id => "sign_in", :class => 'form-inline' }, :remote => true, :format => :json) do |f| %>
<%= f.input :email %>
<%= f.input :password %>
<%= f.submit 'Login' %>
<%= link_to "Forgot your password?", new_password_path('user') %>
<% end %>