summaryrefslogtreecommitdiff
path: root/app/views/devise/shared/_signin_box.html.haml
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-07 17:07:36 -0800
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-07 17:07:36 -0800
commitd02a22ba21f91d2aa4f9cf716dc3aefcf7e7495e (patch)
treee2c08769992618a72e83c7c7584613ba1e00fc3c /app/views/devise/shared/_signin_box.html.haml
parent757df0142f521380b92d28a721a7fd2bd8aa382f (diff)
downloadgitlab-ce-d02a22ba21f91d2aa4f9cf716dc3aefcf7e7495e.tar.gz
Redesign signin/singup pages
Diffstat (limited to 'app/views/devise/shared/_signin_box.html.haml')
-rw-r--r--app/views/devise/shared/_signin_box.html.haml25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/views/devise/shared/_signin_box.html.haml b/app/views/devise/shared/_signin_box.html.haml
new file mode 100644
index 00000000000..3f2161ff6a4
--- /dev/null
+++ b/app/views/devise/shared/_signin_box.html.haml
@@ -0,0 +1,25 @@
+.login-box
+ .login-heading
+ %h3 Sign in
+ .login-body
+ - if ldap_enabled?
+ %ul.nav.nav-tabs
+ - @ldap_servers.each_with_index do |server, i|
+ %li{class: (:active if i.zero?)}
+ = link_to server['label'], "#tab-#{server['provider_name']}", 'data-toggle' => 'tab'
+ - if gitlab_config.signin_enabled
+ %li
+ = link_to 'Standard', '#tab-signin', 'data-toggle' => 'tab'
+ .tab-content
+ - @ldap_servers.each_with_index do |server, i|
+ %div.tab-pane{id: "tab-#{server['provider_name']}", class: (:active if i.zero?)}
+ = render 'devise/sessions/new_ldap', provider: server['provider_name']
+ - if gitlab_config.signin_enabled
+ %div#tab-signin.tab-pane
+ = render 'devise/sessions/new_base'
+
+ - elsif gitlab_config.signin_enabled
+ = render 'devise/sessions/new_base'
+ - else
+ %div
+ No authentication methods configured.