20 lines
787 B
Text
20 lines
787 B
Text
<% unless @user.authenticated_with_all_providers? %>
|
|
<div class="crayons-card crayons-card--content-rows block">
|
|
<% authentication_enabled_providers.each do |provider| %>
|
|
<% unless @user.authenticated_through?(provider.provider_name) %>
|
|
<a
|
|
href="<%= provider.sign_in_path(state: "profile") %>"
|
|
class="crayons-btn crayons-btn--icon-left crayons-btn--brand-<%= provider.provider_name %> m-1"
|
|
data-no-instant>
|
|
<%= inline_svg_tag(
|
|
"#{provider.provider_name}.svg",
|
|
aria: true,
|
|
class: "crayons-icon",
|
|
title: provider.official_name,
|
|
) %>
|
|
Connect <%= provider.official_name %> Account
|
|
</a>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|