tack2us/app/views/pastes/_form.html.erb

8 lines
216 B
Text
Raw Normal View History

2014-02-14 15:54:22 -05:00
<%= form_for @paste do |f| %>
<div class="form-group">
<%= f.label :content %>
<%= f.text_area :content, class: 'form-control' %>
</div>
<%= f.submit 'Paste it!', class: 'btn btn-primary' %>
<% end %>