summaryrefslogtreecommitdiff
path: root/app/views/devise/shared/_signup_omniauth_provider_list.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/devise/shared/_signup_omniauth_provider_list.haml')
-rw-r--r--app/views/devise/shared/_signup_omniauth_provider_list.haml9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/views/devise/shared/_signup_omniauth_provider_list.haml b/app/views/devise/shared/_signup_omniauth_provider_list.haml
new file mode 100644
index 00000000000..ece886b3cdd
--- /dev/null
+++ b/app/views/devise/shared/_signup_omniauth_provider_list.haml
@@ -0,0 +1,9 @@
+%label.label-bold.d-block
+ = _("Create an account using:")
+.d-flex.justify-content-between.flex-wrap
+ - providers.each do |provider|
+ = link_to omniauth_authorize_path(:user, provider), method: :post, class: "btn gl-button gl-display-flex gl-align-items-center gl-text-left gl-mb-2 gl-p-2 omniauth-btn oauth-login #{qa_class_for_provider(provider)}", id: "oauth-login-#{provider}" do
+ - if provider_has_icon?(provider)
+ = provider_image_tag(provider)
+ %span.ml-2
+ = label_for_provider(provider)