debian-mirror-gitlab/app/views/admin/sessions/_new_base.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
557 B
Text
Raw Normal View History

2020-05-24 23:13:21 +05:30
= form_tag(admin_session_path, method: :post, class: 'new_user gl-show-field-errors', 'aria-live': 'assertive') do
2019-12-21 20:55:43 +05:30
.form-group
2020-04-08 14:13:33 +05:30
= label_tag :user_password, _('Password'), class: 'label-bold'
2021-11-18 22:05:49 +05:30
= password_field_tag 'user[password]', nil, class: 'form-control', autocomplete: 'current-password', required: true, title: _('This field is required.'), data: { qa_selector: 'password_field' }
2019-12-21 20:55:43 +05:30
.submit-container.move-submit-down
2022-07-16 23:28:13 +05:30
= submit_tag _('Enter Admin Mode'), class: 'gl-button btn btn-confirm', data: { qa_selector: 'enter_admin_mode_button' }