% content_for :head do %>
  <%= javascript_include_tag "user" %>
<% end %>
<% content_for :heading_class, "pb-0" %>
<% content_for :heading do %>
  
<% end %>
<%= form_tag account_terms_path, :method => :put do %>
  
  <%= t ".read and accept with tou" %>
  
    <%= t ".heading_ct" %>
  
  <%= t ".contributor_terms_explain" %>
  
  
    <% [%w[france FR], %w[italy IT], %w[rest_of_world GB]].each do |name, legale| %>
      
        <%= radio_button_tag "legale", legale, @text_legale == legale, :data => { :url => url_for(:legale => legale) }, :class => "form-check-input" %>
        
      
    <% end %>
  
    <%= render :partial => "terms" %>
  
  
    
      <%= t ".guidance_info_html",
            :readable_summary_link => link_to(t(".readable_summary"),
                                              "https://www.osmfoundation.org/wiki/License/Contributor_Terms_Summary"),
            :informal_translations_link => link_to(t(".informal_translations"),
                                                   "https://www.osmfoundation.org/wiki/License/Contributor_Terms/Informal_Translations") %>
    
   
  
    
      <%= check_box_tag "read_ct", "1", false, :class => "form-check-input" %>
      
    
   
  
    <%= t "layouts.tou" %>
  
  <%= t ".tou_explain.html", :tou_link => link_to(t(".tou_explain.tou"), "https://wiki.osmfoundation.org/wiki/Terms_of_Use", :target => :new) %>
  
    
      <%= check_box_tag "read_tou", "1", false, :class => "form-check-input" %>
      
    
   
  <%= hidden_field_tag("referer", h(params[:referer])) unless params[:referer].nil? %>
  
    <%= submit_tag(t(".continue"), :name => "continue", :id => "continue", :disabled => true, :class => "btn btn-primary") %>
    <%= submit_tag(t(".cancel"), :name => "decline", :id => "decline", :class => "btn btn-outline-secondary") %>
  
<% end %>