hello-learning/blog/app/views/comments/_form.html.erb
2019-08-06 22:50:19 -05:00

14 lines
361 B
Text

<%= form_with(model: [ @article, @article.comments.build ], local: true) do |form| %>
<p>
<%= form.label :commenter %>
<%= form.text_field :commenter %>
</p>
<p>
<%= form.label :body %>
<%= form.text_area :body, :class => 'u-full-width' %>
</p>
<p>
<%= form.submit 'Submit Comment', :class => 'button-primary' %>
</p>
<% end %>