gitlabhq/app/views/devise/sessions/new.html.haml

29 lines
1.3 KiB
Plaintext
Raw Normal View History

- if ldap_enable?
2013-03-25 15:10:14 +01:00
= render partial: 'devise/sessions/new_ldap'
- else
2013-03-25 15:10:14 +01:00
= form_for(resource, as: resource_name, url: session_path(resource_name), html: { class: "login-box" }) do |f|
= image_tag "login-logo.png", width: "304", height: "66", class: "login-logo", alt: "Login Logo"
= f.text_field :login, class: "text top", placeholder: "Username or Email", autofocus: "autofocus"
= f.password_field :password, class: "text bottom", placeholder: "Password"
- if devise_mapping.rememberable?
.clearfix.inputs-list
2013-03-25 15:10:14 +01:00
%label.checkbox.remember_me{for: "user_remember_me"}
= f.check_box :remember_me
%span Remember me
%br/
2013-03-25 15:10:14 +01:00
= f.submit "Sign in", class: "btn-create btn"
2013-01-30 15:40:43 +01:00
.pull-right
2013-03-25 15:10:14 +01:00
= link_to "Forgot your password?", new_password_path(resource_name), class: "btn"
2012-11-06 14:30:48 +01:00
%br/
- if Gitlab.config.gitlab.signup_enabled
%hr/
Don't have an account?
= link_to "Sign up", new_registration_path(resource_name)
- if devise_mapping.omniauthable? && resource_class.omniauth_providers.present?
2013-02-07 12:20:33 +01:00
%hr
%div
2013-02-07 12:20:33 +01:00
%span Sign in with:  
- resource_class.omniauth_providers.each do |provider|
%span
= link_to authbutton(provider, 32), omniauth_authorize_path(resource_name, provider)