2012-09-03 07:13:51 +02:00
|
|
|
= 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"
|
2013-03-04 21:54:26 +01:00
|
|
|
= text_field_tag :username, nil, {:class => "text top", :placeholder => "LDAP Login", :autofocus => "autofocus"}
|
2012-09-03 07:13:51 +02:00
|
|
|
= password_field_tag :password, nil, {:class => "text bottom", :placeholder => "Password"}
|
|
|
|
%br/
|
2013-01-29 21:18:19 +01:00
|
|
|
= submit_tag "LDAP Sign in", :class => "btn-primary btn"
|
2012-09-03 07:13:51 +02:00
|
|
|
- if devise_mapping.omniauthable?
|
|
|
|
- (resource_class.omniauth_providers - [:ldap]).each do |provider|
|
|
|
|
%hr/
|
2013-01-29 21:18:19 +01:00
|
|
|
= link_to "Sign in with #{provider.to_s.titleize}", omniauth_authorize_path(resource_name, provider), :class => "btn btn-primary"
|
2012-09-03 07:13:51 +02:00
|
|
|
%br/
|
|
|
|
%hr/
|
|
|
|
%a#other_form_toggle{:href => "#", :onclick => "javascript:$('#new_user').toggle();"} Other Sign in
|
|
|
|
:javascript
|
|
|
|
$(function() {
|
|
|
|
$('#new_user').toggle();
|
|
|
|
});
|
2012-09-10 13:35:09 +02:00
|
|
|
= form_for(resource, :as => resource_name, :url => session_path(resource_name), :html => { :class => "login-box" }) do |f|
|
2012-09-03 07:13:51 +02:00
|
|
|
= 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/
|
2013-01-29 21:18:19 +01:00
|
|
|
= f.submit "Sign in", :class => "btn-primary btn"
|
2013-01-30 15:40:43 +01:00
|
|
|
.pull-right
|
2012-09-03 07:13:51 +02:00
|
|
|
= render :partial => "devise/shared/links"
|