summaryrefslogtreecommitdiff
path: root/app/views/devise/sessions/_new_ldap.html.haml
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2012-09-03 08:13:51 +0300
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2012-09-03 08:15:07 +0300
commitc7cfe3d83bfbad2a074cacb5a4ed8a24244f8f26 (patch)
tree81b4856697186c42da5727c9797c2e8b68b4103f /app/views/devise/sessions/_new_ldap.html.haml
parent0c5e556922b4c7ff71c6af6255a0f6783e25ca0c (diff)
downloadgitlab-ce-c7cfe3d83bfbad2a074cacb5a4ed8a24244f8f26.tar.gz
devise session templates to haml. Fix problem with missing message in commit
Diffstat (limited to 'app/views/devise/sessions/_new_ldap.html.haml')
-rw-r--r--app/views/devise/sessions/_new_ldap.html.haml29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/views/devise/sessions/_new_ldap.html.haml b/app/views/devise/sessions/_new_ldap.html.haml
new file mode 100644
index 00000000000..85010df7a8a
--- /dev/null
+++ b/app/views/devise/sessions/_new_ldap.html.haml
@@ -0,0 +1,29 @@
+= form_tag(user_omniauth_callback_path(:ldap), :class => "login-box", :id => 'new_ldap_user' ) do
+ = image_tag "login-logo.png", :width => "304", :height => "66", :class => "login-logo", :alt => "Login Logo"
+ = text_field_tag :username, nil, {:class => "text top", :placeholder => "LDAP Login"}
+ = password_field_tag :password, nil, {:class => "text bottom", :placeholder => "Password"}
+ %br/
+ = submit_tag "LDAP Sign in", :class => "primary btn"
+ - if devise_mapping.omniauthable?
+ - (resource_class.omniauth_providers - [:ldap]).each do |provider|
+ %hr/
+ = link_to "Sign in with #{provider.to_s.titleize}", omniauth_authorize_path(resource_name, provider), :class => "btn primary"
+ %br/
+ %hr/
+ %a#other_form_toggle{:href => "#", :onclick => "javascript:$('#new_user').toggle();"} Other Sign in
+ :javascript
+ $(function() {
+ $('#new_user').toggle();
+ });
+ = form_for(resource, :as => resource_name, :url => session_path(resource_name), :html => { :class => "login-box" }) do |f|
+ = f.text_field :email, :class => "text top", :placeholder => "Email"
+ = f.password_field :password, :class => "text bottom", :placeholder => "Password"
+ - if devise_mapping.rememberable?
+ .clearfix.inputs-list
+ %label.checkbox.remember_me{:for => "user_remember_me"}
+ = f.check_box :remember_me
+ %span Remember me
+ %br/
+ = f.submit "Sign in", :class => "primary btn"
+ .right
+ = render :partial => "devise/shared/links"