X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/52a8e2a0d91355ba152443a63cc8c9744240a907..bacca516f02ae05e0682785bdd8fd87c5d75a17f:/app/helpers/user_helper.rb diff --git a/app/helpers/user_helper.rb b/app/helpers/user_helper.rb index 19bb8e0d6..cc7d7aeca 100644 --- a/app/helpers/user_helper.rb +++ b/app/helpers/user_helper.rb @@ -53,19 +53,32 @@ module UserHelper # External authentication support def openid_logo - image_tag "openid_small.png", :alt => t("sessions.new.openid_logo_alt"), :class => "align-text-bottom" + image_tag "openid.svg", :size => "36", :alt => t("application.auth_providers.openid_logo_alt"), :class => "align-text-bottom" end def auth_button(name, provider, options = {}) link_to( image_tag("#{name}.svg", - :alt => t("sessions.new.auth_providers.#{name}.alt"), - :class => "rounded-3", + :alt => t("application.auth_providers.#{name}.alt"), + :class => "rounded-1", :size => "36"), auth_path(options.merge(:provider => provider)), :method => :post, - :class => "auth_button", - :title => t("sessions.new.auth_providers.#{name}.title") + :class => "auth_button btn btn-light p-2 d-block", + :title => t("application.auth_providers.#{name}.title") + ) + end + + def auth_button_preferred(name, provider, options = {}) + link_to( + image_tag("#{name}.svg", + :alt => t("application.auth_providers.#{name}.alt"), + :class => "rounded-1 me-3", + :size => "36") + t("application.auth_providers.#{name}.title"), + auth_path(options.merge(:provider => provider)), + :method => :post, + :class => "auth_button btn btn-outline-secondary fs-6 border rounded py-2 px-4 d-flex justify-content-center align-items-center", + :title => t("application.auth_providers.#{name}.title") ) end