summaryrefslogtreecommitdiff
path: root/app/views/shared/_personal_access_tokens_form.html.haml
blob: 0891b3459ec587b2b579b7c248c36d6b53c304d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
- type = impersonation ? "impersonation" : "personal access"

%h5.prepend-top-0
  Add a #{type} token
%p.profile-settings-content
  Pick a name for the application, and we'll give you a unique #{type} token.

= form_for token, url: path, method: :post, html: { class: 'js-requires-input' } do |f|

  = form_errors(token)

  .row
    .form-group.col-md-6
      = f.label :name, class: 'label-bold'
      = f.text_field :name, class: "form-control qa-personal-access-token-name-field", required: true

  .row
    .form-group.col-md-6
      = f.label :expires_at, class: 'label-bold'
      .input-icon-wrapper
        = f.text_field :expires_at, class: "datepicker form-control", placeholder: 'YYYY-MM-DD'
        = icon('calendar', { class: 'input-icon-right' })

  .form-group
    = f.label :scopes, class: 'label-bold'
    = render 'shared/tokens/scopes_form', prefix: 'personal_access_token', token: token, scopes: scopes

  .prepend-top-default
    = f.submit "Create #{type} token", class: "btn btn-success qa-create-token-button"