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