34 lines
1.5 KiB
Text
34 lines
1.5 KiB
Text
- page_title "Personal Access Tokens"
|
|
= render 'profiles/head'
|
|
|
|
.row.prepend-top-default
|
|
.col-lg-3.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-9
|
|
|
|
- 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", '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
|
|
|
|
:javascript
|
|
$("#created-personal-access-token").click(function() {
|
|
this.select();
|
|
});
|