Add the has_many_polymorphs plugin
[cs356-p2-videostore.git] / vendor / plugins / has_many_polymorphs / test / integration / app / app / views / sellers / new.html.erb
1 <h1>New seller</h1>
2
3 <%= error_messages_for :seller %>
4
5 <% form_for(@seller) do |f| %>
6   <p>
7     <%= f.submit "Create" %>
8   </p>
9 <% end %>
10
11 <%= link_to 'Back', sellers_path %>