From: Tom Hughes Date: Sat, 20 Jul 2024 11:02:03 +0000 (+0100) Subject: Merge remote-tracking branch 'upstream/pull/5006' X-Git-Tag: live~334 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/fee09d5153a272500b847a008c770d19f05e0812?hp=f9ea6aa718a5babc16bb5195098b504a1bd43e32 Merge remote-tracking branch 'upstream/pull/5006' --- diff --git a/app/assets/javascripts/auth_providers.js b/app/assets/javascripts/auth_providers.js index fe0a4fdce..d6a7c6393 100644 --- a/app/assets/javascripts/auth_providers.js +++ b/app/assets/javascripts/auth_providers.js @@ -7,13 +7,4 @@ $(document).ready(function () { params.referer = $("#referer").val(); this.search = Qs.stringify(params); }); - - // Add click handler to show OpenID field - $("#openid_open_url").click(function () { - $("#login_auth_buttons").hide(); - $("#openid_login_form").show(); - }); - - // Hide OpenID field for now - $("#openid_login_form").hide(); }); diff --git a/app/views/application/_auth_providers.html.erb b/app/views/application/_auth_providers.html.erb index 895a42eb0..b7fb5ba4d 100644 --- a/app/views/application/_auth_providers.html.erb +++ b/app/views/application/_auth_providers.html.erb @@ -2,7 +2,7 @@
<%= tag.div :id => "login_auth_buttons", - :class => ["row row-cols-1", { "row-cols-sm-2" => prefered_auth_button_available }, "g-2 mb-3"] do %> + :class => ["collapse show row row-cols-1", { "row-cols-sm-2" => prefered_auth_button_available }, "g-2 mb-3"] do %> <% if prefered_auth_button_available %>
@@ -17,7 +17,8 @@ :alt => t(".openid.alt"), :size => "36"), :type => "button", - :id => "openid_open_url", + :data => { "bs-toggle" => "collapse", + "bs-target" => "#login_auth_buttons, #openid_login_form" }, :title => t(".openid.title"), :class => "btn btn-light p-2" %> <% elsif provider != @preferred_auth_provider %> @@ -28,7 +29,7 @@ <% end %> <%# :tabindex starts high to allow rendering at the bottom of the template %> - <%= form_tag(auth_path(:provider => "openid"), :id => "openid_login_form") do %> + <%= form_tag auth_path(:provider => "openid"), :id => "openid_login_form", :class => "collapse" do %>