new.html.haml 1.27 KB
- if ldap_enable?
  = render partial: 'devise/sessions/new_ldap'
- else
  = 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
        %label.checkbox.remember_me{for: "user_remember_me"}
          = f.check_box :remember_me
          %span Remember me
    %br/
    = f.submit "Sign in", class: "btn-create btn"
    .pull-right
      = link_to "Forgot your password?", new_password_path(resource_name), class: "btn"
    %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?
      %hr
      %div
        %span Sign in with:  
        - resource_class.omniauth_providers.each do |provider|
          %span
            = link_to authbutton(provider, 32), omniauth_authorize_path(resource_name, provider)