]> git.openstreetmap.org Git - rails.git/blob - app/views/users/terms.html.erb
Add checkbox for contributor terms and improve text
[rails.git] / app / views / users / terms.html.erb
1 <% content_for :head do %>
2   <%= javascript_include_tag "user" %>
3 <% end %>
4
5 <% content_for :heading do %>
6   <h1><%= t ".heading" %></h1>
7   <div class='header-illustration new-user-terms'></div>
8 <% end %>
9
10 <%= form_tag({ :action => "save" }, { :class => " inner22 standard-form fillL" }) do %>
11   <!-- legale is <%= @legale %> -->
12   <p class="deemphasize"><%= t '.read and accept with tou' %></p>
13   <label class="standard-label">
14     <%= t '.heading_ct' %>
15   </label>
16   <div class='form-row horizontal-list'>
17     <p class="deemphasize"><%= t '.contributor_terms_explain' %></p>
18     <label class="standard-label">
19       <%= t ".legale_select" %>
20     </label>
21
22     <% [%w[france FR], %w[italy IT], %w[rest_of_world GB]].each do |name, legale| %>
23       <div class="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) %>
27         </label>
28       </div>
29     <% end %>
30   </div>
31
32   <div id="contributorTerms" class="col12 legale">
33     <%= render :partial => "terms" %>
34   </div>
35
36   <div>
37     <p id="contributorGuidance" class="deemphasize">
38       <%= raw t '.guidance',
39                 :summary => 'https://www.osmfoundation.org/wiki/License/Contributor_Terms_Summary',
40                 :translations => 'https://www.osmfoundation.org/wiki/License/Contributor_Terms/Informal_Translations' %>
41     </p>
42   </div>
43   <div class="form-row">
44     <label for="read_ct">
45       <%= check_box_tag 'read_ct' %>
46       <%= t '.read_ct' %>
47     </label>
48   </div>
49
50   <label class="standard-label">
51     <%= t 'layouts.tou' %>
52   </label>
53   <p class="deemphasize"><%= 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="form-row">
55     <label for="read_tou">
56       <%= check_box_tag 'read_tou' %>
57       <%= t '.read_tou' %>
58     </label>
59
60     <%= hidden_field_tag("referer", h(params[:referer])) unless params[:referer].nil? %>
61
62     <div class="buttons form-row inner20 clearfix">
63       <%= submit_tag("Continue", :name => "continue", :id => "continue", :disabled => true)  %>
64       <%= submit_tag("Cancel", :name => "decline", :id => "decline") %>
65     </div>
66
67     <label for="user_consider_pd">
68       <%= check_box('user', 'consider_pd') %>
69       <%= t '.consider_pd' %>
70     </label>
71     <span class="minorNote">(<%= link_to(t('.consider_pd_why'), t('.consider_pd_why_url'), :target => :new)%>)</span>
72
73   </div>
74 <% end %>