Skip to content

Instantly share code, notes, and snippets.

@marcioj
Created May 20, 2016 19:34
Show Gist options
  • Save marcioj/e4a39530c98064af49c4fb737b07bbde to your computer and use it in GitHub Desktop.
Save marcioj/e4a39530c98064af49c4fb737b07bbde to your computer and use it in GitHub Desktop.
Rails form helper
f.label :title => <label>Title</label>
f.text_field :title => <input type="text" />
f.text_area :body, size: "60x12" => <textarea cols="60" rows="12" ></textarea>
f.submit "Create" => <input name="commit" type="submit" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment