+ def auth_button(name, provider, options = {})
+ link_to(
+ image_tag("#{name}.svg",
+ :alt => t("application.auth_providers.#{name}.alt"),
+ :class => "rounded-1",
+ :size => "36"),
+ auth_path(options.merge(:provider => provider)),
+ :method => :post,
+ :class => "auth_button btn btn-light p-2",
+ :title => t("application.auth_providers.#{name}.title")
+ )