<%= ts("Request Invitations") %>

<%= ts("We don't normally grant more than 3 invitations at a time for personal use, and the maximum you can request through this form is %{max}. Requests are manually reviewed and may take several days to be approved. Please ", :max => ArchiveConfig.MAX_USER_INVITE_REQUEST.to_s) %> <%= link_to ts('contact Support'), new_feedback_report_path %> <%= ts("if you need more than 10 invitations for a challenge, or if your challenge or collection is opening soon.") %>

<%= render "invitations/user_invitations_navigation" %> <%= form_for(@user_invite_request) do |f| %>

<%= ts("* Required information") %>

<%= error_messages_for @user_invite_request %>
<%= f.label :quantity, ts("How many invitations would you like? (max %{max})", :max => ArchiveConfig.MAX_USER_INVITE_REQUEST.to_s) + "*" %>
<%= f.text_field :quantity, :size => '2', :class => 'number' %>
<%= f.label :reason, ts("Please specify why you'd like them:") + "*" %>
<%= f.text_area :reason, :size => '50x5' %>
Submit
<%= f.submit ts("Send Request") %>
<% end %>