Skip to content

Instantly share code, notes, and snippets.

@CH-JesseMa
Created April 9, 2014 18:20
Show Gist options
  • Save CH-JesseMa/10299480 to your computer and use it in GitHub Desktop.
Save CH-JesseMa/10299480 to your computer and use it in GitHub Desktop.
form_for
<%= form_for :article do |f| %>
<p>
<%= f.label :title %><br>
<%= f.text_field :title %>
</p>
<p>
<%= f.label :text %><br>
<%= f.text_area :text %>
</p>
<p>
<%= f.submit %>
</p>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment