<%= ts("Sign-up Instructions") %>

<%= ts("Sign-up Instructions") %>

<%= ts("Explain to your members how you want them to sign up.") %> <%= allowed_html_instructions %>

<%= f.label :signup_instructions_general, ts("General Sign-up Instructions:") %>
<%= f.text_area :signup_instructions_general, :id => field_id(f, "signup_instructions_general").to_sym, :rows => 6, :cols => 60, :class => "observe_textlength" %> <%= live_validation_for_field(field_id(f, "signup_instructions_general").to_sym, :presence => false, :maximum_length => ArchiveConfig.INFO_MAX) -%> <%= generate_countdown_html(field_id(f, "signup_instructions_general").to_sym, ArchiveConfig.INFO_MAX) -%>
<% f.object.class::PROMPT_TYPES.each do |prompt_type| %>
<%= f.label "signup_instructions_#{prompt_type}".to_sym, ts("#{prompt_type.singularize.capitalize} Instructions: ") %>
<%= f.text_area "signup_instructions_#{prompt_type}".to_sym, :id => field_id(f, "signup_instructions_#{prompt_type}").to_sym, :rows => 6, :cols => 60, :class => "observe_textlength" %> <%= live_validation_for_field(field_id(f, "signup_instructions_#{prompt_type}").to_sym, :presence => false, :maximum_length => ArchiveConfig.INFO_MAX) -%> <%= generate_countdown_html(field_id(f, "signup_instructions_#{prompt_type}").to_sym, ArchiveConfig.INFO_MAX) -%>
<% end %>

<%= ts("Change the Labels") %>

<%= ts("You can change these form fields to something more useful for your own challenge.") %>

<% f.object.class::PROMPT_TYPES.each do |prompt_types| %> <% prompt_type = prompt_types.singularize %>
<%= ts("In #{prompt_types.capitalize} change:") %>
<%= f.label "#{prompt_type}_url_label".to_sym, ts("\"Prompt URL\" to:") %>
<%= f.text_field "#{prompt_type}_url_label".to_sym %>
<%= f.label "#{prompt_type}_description_label".to_sym, ts("\"Description\" to:") %>
<%= f.text_field "#{prompt_type}_description_label".to_sym %>
<% end %>