]> git.openstreetmap.org Git - rails.git/blob - app/views/confirmations/confirm.html.erb
Rework confirmations page to avoid raw html in translations
[rails.git] / app / views / confirmations / confirm.html.erb
1 <% content_for :heading_class, "pb-0" %>
2 <% content_for :heading do %>
3   <div class='header-illustration confirm-main'>
4     <h1><%= t ".heading" %></h1>
5   </div>
6 <% end %>
7
8 <% if params[:confirm_string] %>
9   <% content_for :head do %>
10     <%= javascript_include_tag "user" %>
11   <% end %>
12
13   <% content_for(:content_class) { "user_confirm" } %>
14
15   <p><%= t ".press confirm button" %></p>
16
17   <%= bootstrap_form_tag :html => { :id => "confirm" } do |f| %>
18     <%= f.hidden_field :display_name, :value => params[:display_name] %>
19     <%= f.hidden_field :confirm_string, :value => params[:confirm_string] %>
20     <%= f.primary t(".button") %>
21   <% end %>
22 <% else %>
23   <h1>
24     <%= t ".introduction_1" %>
25     <span class="text-muted">
26       <%= t ".introduction_2" %>
27     </span>
28   </h1>
29
30   <p class='text-muted'>
31     <%= t ".resend_html",
32           :reconfirm_link => link_to(t(".click_here"), url_for(:action => "confirm_resend")) %>
33   </p>
34 <% end %>