Created
January 12, 2011 10:16
-
-
Save novemberkilo/775972 to your computer and use it in GitHub Desktop.
Basic form with three input fields in one row
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 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