32 lines
1.6 KiB
Text
32 lines
1.6 KiB
Text
- breadcrumb_title "Access Tokens"
|
|
- page_title "Personal Access Tokens"
|
|
- @content_class = "limit-container-width" unless fluid_layout
|
|
|
|
= render 'profiles/head'
|
|
|
|
.row.prepend-top-default
|
|
.col-lg-4.profile-settings-sidebar
|
|
%h4.prepend-top-0
|
|
= page_title
|
|
%p
|
|
You can generate a personal access token for each application you use that needs access to the GitLab API.
|
|
%p
|
|
You can also use personal access tokens to authenticate against Git over HTTP.
|
|
They are the only accepted password when you have Two-Factor Authentication (2FA) enabled.
|
|
|
|
.col-lg-8
|
|
|
|
- if flash[:personal_access_token]
|
|
.created-personal-access-token-container
|
|
%h5.prepend-top-0
|
|
Your New Personal Access Token
|
|
.form-group
|
|
= text_field_tag 'created-personal-access-token', flash[:personal_access_token], readonly: true, class: "form-control js-select-on-focus", 'aria-describedby' => "created-personal-access-token-help-block"
|
|
= clipboard_button(text: flash[:personal_access_token], title: "Copy personal access token to clipboard", placement: "left")
|
|
%span#created-personal-access-token-help-block.help-block.text-danger Make sure you save it - you won't be able to access it again.
|
|
|
|
%hr
|
|
|
|
= render "shared/personal_access_tokens_form", path: profile_personal_access_tokens_path, impersonation: false, token: @personal_access_token, scopes: @scopes
|
|
|
|
= render "shared/personal_access_tokens_table", impersonation: false, active_tokens: @active_personal_access_tokens, inactive_tokens: @inactive_personal_access_tokens
|