New Team

<%= form_for(@team, html: { class: 'square horizontal' }) do |f| %> <%= render 'shared/errors', messages: @team.errors.full_messages %>
<%= f.label :name %> <%= f.text_field :name %>
<%= f.label :irc %> <%= f.text_field :irc %>
<%= f.label :web %> <%= f.text_field :web %>
<%= f.label :tag %> <%= f.text_field :tag %>
<%= f.label :country %> <%= country_select :team, :country, include_blank: true %>
<%= f.label :comment %> <%= f.text_field :comment %>
<%= f.submit "Create" %>
<% end %>