X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b057c7ae5aa66291b0f4be7ca08dd9082f18bfae..8c0f5752809f7a21aa62babc05f35a8f881d2141:/app/helpers/user_helper.rb?ds=sidebyside diff --git a/app/helpers/user_helper.rb b/app/helpers/user_helper.rb index 4f5d7e0c2..0831cde6e 100644 --- a/app/helpers/user_helper.rb +++ b/app/helpers/user_helper.rb @@ -52,33 +52,29 @@ module UserHelper # External authentication support - def openid_logo - 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 = {}) + def auth_button(provider, options = {}) link_to( - image_tag("#{name}.svg", - :alt => t("application.auth_providers.#{name}.alt"), + image_tag("auth_providers/#{provider}.svg", + :alt => t("application.auth_providers.#{provider}.alt"), :class => "rounded-1", :size => "36"), auth_path(options.merge(:provider => provider)), :method => :post, - :class => "auth_button p-2 d-block", - :title => t("application.auth_providers.#{name}.title") + :class => "auth_button btn btn-light p-2", + :title => t("application.auth_providers.#{provider}.title") ) end - def auth_button_preferred(name, provider, options = {}) + def auth_button_preferred(provider, options = {}) link_to( - image_tag("#{name}.svg", - :alt => t("application.auth_providers.#{name}.alt"), + image_tag("auth_providers/#{provider}.svg", + :alt => t("application.auth_providers.#{provider}.alt"), :class => "rounded-1 me-3", - :size => "36") + t("application.auth_providers.#{name}.title"), + :size => "36") + t("application.auth_providers.#{provider}.title"), auth_path(options.merge(:provider => provider)), :method => :post, - :class => "auth_button fs-6 border rounded text-body-secondary text-decoration-none py-2 px-4 d-flex justify-content-center align-items-center", - :title => t("application.auth_providers.#{name}.title") + :class => "auth_button btn btn-outline-secondary border py-2 px-4 d-flex justify-content-center align-items-center", + :title => t("application.auth_providers.#{provider}.title") ) end