<%= t 'devise.invitations.edit.header' %>
<%= form_for (resource or :user), as: resource_name, url: invitation_path(resource_name), html: { method: :put } do |f| %>
<%= f.hidden_field :invitation_token %>
<%= f.label :full_name %>
<%= f.text_field :full_name,
value: (params[:user] ? params[:user][:full_name] : ''),
autofocus: true,
class: 'form-control' %>
<%= f.label :password %>
<% if @minimum_password_length %>
(<%= @minimum_password_length %> characters minimum)
<% end %>
<%= f.password_field :password, autocomplete: "off", class: "form-control" %>
<%= f.label :password_confirmation %>
<%= f.password_field :password_confirmation, autocomplete: "off", class: "form-control" %>
<%= label :team, :name, t('users.registrations.new.team_name_label') %>
<% if @team %>
<%= text_field :team, :name, class: 'form-control', value: @team.name %>
<% else %>
<%= text_field :team,
:name,
class: 'form-control',
value: (params[:team] ? params[:team][:name] : '') %>
<% end %>
<%= t 'users.registrations.new.team_name_help' %>
<%= recaptcha_input_tag %>
<%= f.submit "Sign Up", class: "btn btn-primary" %>
<% end %>
<% if resource and not resource.errors.empty? %>
<% end %>
<% if @team and not @team.errors.empty? %>
<% end %>