]> git.openstreetmap.org Git - rails.git/blob - app/views/application/_auth_providers.html.erb
Remove unused .openid_url class from OpenID url input
[rails.git] / app / views / application / _auth_providers.html.erb
1 <div>
2   <div class="justify-content-center d-flex align-items-center flex-wrap mb-3" id="login_auth_buttons">
3
4     <% prefered_auth_button_available = false %>
5     <% %w[google facebook microsoft github wikipedia].each do |provider| %>
6       <% if Settings.key?("#{provider}_auth_id".to_sym) -%>
7         <% if @preferred_auth_provider == provider %>
8           <% prefered_auth_button_available = true %>
9         <% end %>
10       <% end -%>
11     <% end -%>
12
13     <% if prefered_auth_button_available %>
14       <div class="justify-content-center d-flex align-items-center flex-wrap w-50">
15         <% %w[google facebook microsoft github wikipedia].each do |provider| %>
16           <% if Settings.key?("#{provider}_auth_id".to_sym) -%>
17             <% if @preferred_auth_provider == provider %>
18               <%= auth_button_preferred provider, provider %>
19             <% end %>
20           <% end -%>
21         <% end -%>
22       </div>
23       <div class="justify-content-center d-flex align-items-center flex-wrap gap-2 w-50 px-1">
24     <% else %>
25       <div class="justify-content-center d-flex align-items-center flex-wrap gap-2">
26     <% end %>
27
28       <%= link_to image_tag("openid.svg",
29                             :alt => t("application.auth_providers.openid.alt"),
30                             :size => "36"),
31                   "#",
32                   :id => "openid_open_url",
33                   :title => t("application.auth_providers.openid.title"),
34                   :class => "btn btn-light p-2 d-block" %>
35
36       <% %w[google facebook microsoft github wikipedia].each do |provider| %>
37         <% unless @preferred_auth_provider == provider %>
38           <% if Settings.key?("#{provider}_auth_id".to_sym) -%>
39             <%= auth_button provider, provider %>
40           <% end -%>
41         <% end %>
42       <% end -%>
43     </div>
44   </div>
45
46   <%# :tabindex starts high to allow rendering at the bottom of the template %>
47   <%= form_tag(auth_path(:provider => "openid"), :id => "openid_login_form") do %>
48     <div id="login_openid_url" class="mb-3">
49       <label for="openid_url" class="form-label"><%= t ".openid_html", :logo => openid_logo %></label>
50       <%= hidden_field_tag("referer", params[:referer], :autocomplete => "off") %>
51       <%= text_field_tag("openid_url", "", :tabindex => 20, :autocomplete => "on", :class => "form-control") %>
52       <span class="form-text text-body-secondary">(<a href="<%= t "accounts.edit.openid.link" %>" target="_new"><%= t "accounts.edit.openid.link text" %></a>)</span>
53     </div>
54
55     <%= submit_tag t(".openid_login_button"), :tabindex => 21, :id => "openid_login_button", :class => "btn btn-primary" %>
56   <% end %>
57 </div>