summaryrefslogtreecommitdiff
path: root/app/views/projects/mirrors/_authentication_method.html.haml
blob: 28b433b25145c939395195b3380f9e826882bb45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- mirror = f.object
- auth_options = [[_('Password'), 'password'], [_('SSH public key'), 'ssh_public_key']]

.form-group
  = f.label :auth_method, _('Authentication method'), class: 'label-bold'
  .select-wrapper
    = f.select :auth_method,
        options_for_select(auth_options, mirror.auth_method),
        {}, { class: "form-control gl-form-select select-control js-mirror-auth-type qa-authentication-method" }
    = sprite_icon('chevron-down', css_class: "gl-icon gl-absolute gl-top-3 gl-right-3 gl-text-gray-200")
    = f.hidden_field :auth_method, value: "password", class: "js-hidden-mirror-auth-type"

.form-group
  .well-password-auth.collapse.js-well-password-auth
    = f.label :password, _("Password"), class: "label-bold"
    = f.password_field :password, class: 'form-control gl-form-input qa-password js-mirror-password-field', autocomplete: 'off'