Skip to content

Instantly share code, notes, and snippets.

@novemberkilo
Created January 12, 2011 10:16
Show Gist options
  • Save novemberkilo/775972 to your computer and use it in GitHub Desktop.
Save novemberkilo/775972 to your computer and use it in GitHub Desktop.
Basic form with three input fields in one row
- fields_for "recommendation[]" do |f|
.inviter
.field
= f.label :first_name, 'First Name:'
= f.text_field :first_name, :value => ""
.field
= f.label :last_name, 'Last Name:'
= f.text_field :last_name, :value => ""
.field
= f.label :recipient_email, 'Email:'
= f.text_field :recipient_email, :value => "", :class => :email
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment