From: Anton Khorev Date: Fri, 19 Jul 2024 17:02:04 +0000 (+0300) Subject: Use Bootstrap collapse to toggle OpenID login form X-Git-Tag: live~393^2 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/010f0e1aaf6439c053265fbcfe6381d4d4f39b5b Use Bootstrap collapse to toggle OpenID login form --- 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 %>