1 <% content_for :head do %>
 
   2   <%= javascript_include_tag "user" %>
 
   5 <% content_for :heading do %>
 
   6   <h1><%= t ".heading" %></h1>
 
   7   <div class='header-illustration new-user-terms'></div>
 
  10 <%= form_tag({ :action => "save" }, { :class => "standard-form fillL" }) do %>
 
  11   <!-- legale is <%= @legale %> -->
 
  12   <p class="text-muted"><%= t ".read and accept with tou" %></p>
 
  14     <%= t ".heading_ct" %>
 
  16   <div class='standard-form-row horizontal-list clearfix'>
 
  17     <p class="text-muted"><%= t ".contributor_terms_explain" %></p>
 
  18     <label class="standard-label">
 
  19       <%= t ".legale_select" %>
 
  22     <% [%w[france FR], %w[italy IT], %w[rest_of_world GB]].each do |name, legale| %>
 
  23       <div class="standard-form-row">
 
  24         <label for="legale_<%= legale %>">
 
  25           <%= radio_button_tag "legale", legale, @legale == legale, :data => { :url => url_for(:legale => legale) } %>
 
  26           <%= t(".legale_names.#{name}") %>
 
  32   <div id="contributorTerms" class="legale">
 
  33     <%= render :partial => "terms" %>
 
  37     <p id="contributorGuidance" class="text-muted">
 
  38       <%= t ".guidance_html",
 
  39             :summary => "https://www.osmfoundation.org/wiki/License/Contributor_Terms_Summary",
 
  40             :translations => "https://www.osmfoundation.org/wiki/License/Contributor_Terms/Informal_Translations" %>
 
  43   <div class="standard-form-row">
 
  45       <%= check_box_tag "read_ct" %>
 
  51     <%= t "layouts.tou" %>
 
  53   <p class="text-muted"><%= t ".tou_explain_html", :tou_link => link_to(t("layouts.tou"), "https://wiki.osmfoundation.org/wiki/Terms_of_Use", :target => :new) %></p>
 
  54   <div class="standard-form-row">
 
  55     <label for="read_tou">
 
  56       <%= check_box_tag "read_tou" %>
 
  60     <%= hidden_field_tag("referer", h(params[:referer])) unless params[:referer].nil? %>
 
  62     <div class="buttons standard-form-row py-3 clearfix">
 
  63       <%= submit_tag("Continue", :name => "continue", :id => "continue", :disabled => true) %>
 
  64       <%= submit_tag("Cancel", :name => "decline", :id => "decline") %>
 
  67     <label for="user_consider_pd">
 
  68       <%= check_box("user", "consider_pd") %>
 
  69       <%= t ".consider_pd" %>
 
  71     <span class="minorNote">(<%= link_to(t(".consider_pd_why"), t(".consider_pd_why_url"), :target => :new) %>)</span>