私はHamlと一緒に作業していますが、電子メール、パスワード、送信ボタンを同じ行に表示する方法が分かりません私のホームページの代わりに、彼らは通常のフォームのようにお互いの上に積み重ねられています。Haml - Devise in Header、同じ行にあるフィールド
!!!
%html
%head
%title
= stylesheet_link_tag "web-app-theme/base", "web-app-theme/themes/activo/style", "web-app-theme/override"
= csrf_meta_tag
%body
#container
#header
%h1
%a{:href => "/"} Peer Instruction Network
#user-navigation
%ul.wat-cf
%li
.content.login
.flash
- flash.each do |type, message|
%div{ :class => "message #{type}" }
%p= message
= form_for(resource, :as => resource_name, :url => session_path(resource_name), :html => { :class => "form login" }) do |f|
.group.wat-cf
.left= f.label :email, :class => "label right"
.right= f.text_field :email, :class => "text_field"
.group.wat-cf
.left= f.label :password, :class => "label right"
.right= f.password_field :password, :class => "text_field"
.group.wat-cf
.right
%button.button{ :type => "submit" }
Login
/= link_to "Sign In", destroy_user_session_path
#box
= yield
私はハムルを同じままにして、CSSだけを変更しますか? – eWizardII
@eWizardIIはいそれはHAMLを変更することなく動作するはずです –