Create a new recipe

<% form_tag(recipes_url, :method => :post) do %>

Name:
<%= text_field :recipe, :name %>

Instructions:
<%= text_area :recipe, :instructions, :rows => 15, :cols => 60 %>

<%= submit_tag('Submit') %>

<% end %>