Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_new_base.html.haml « sessions « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35b75e425f93fcf985056b9f898035b337ca779a (plain)
1
2
3
4
5
6
7
= gitlab_ui_form_for(:user, url: admin_session_path, html: { class: 'gl-p-5 gl-show-field-errors', aria: { live: 'assertive' } }) do |f|
  .form-group
    = f.label :password, _('Password')
    = f.password_field :password, class: 'form-control js-password', data: { id: 'user_password', name: 'user[password]', testid: 'password-field' }

  = render Pajamas::ButtonComponent.new(type: :submit, variant: :confirm, block: true, button_options: { data: { testid: 'enter-admin-mode-button' } }) do
    = _('Enter admin mode')