- def openid_logo
- image_tag "openid_small.png", :alt => t("sessions.new.openid_logo_alt"), :class => "align-text-bottom"
+ def auth_button(provider, options = {})
+ link_to(
+ 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 btn btn-outline-secondary border p-2",
+ :title => t("application.auth_providers.#{provider}.title")
+ )