BigW Consortium Gitlab

show.html.haml 4.67 KB
Newer Older
1
- page_title "Account"
Connor Shea committed
2
= render 'profiles/head'
3

4 5
- if current_user.ldap_user?
  .alert.alert-info
6 7
    Some options are unavailable for LDAP accounts

Phil Hughes committed
8 9 10
.row.prepend-top-default
  .col-lg-3.profile-settings-sidebar
    %h4.prepend-top-0
11
      Private Tokens
Phil Hughes committed
12
    %p
13 14
      Keep these tokens secret, anyone with access to them can interact with
      GitLab as if they were you.
15
  .col-lg-9.private-tokens-reset
Alexis Reigel committed
16
    = render partial: 'reset_token', locals: { label: 'Private token', button_label: 'Reset private token', help_text: 'Your private token is used to access the API and Atom feeds without username/password authentication.' }
Alexis Reigel committed
17

Alexis Reigel committed
18
    = render partial: 'reset_token', locals: { label: 'RSS token', button_label: 'Reset RSS token', help_text: 'Your RSS token is used to create urls for personalized RSS feeds.' }
19

20
    - if incoming_email_token_enabled?
Alexis Reigel committed
21
      = render partial: 'reset_token', locals: { label: 'Incoming email token', button_label: 'Reset incoming email token', help_text: 'Your incoming email token is used to create new issues by email, and is included in your project-specific email addresses.' }
22

Phil Hughes committed
23 24 25 26
%hr
.row.prepend-top-default
  .col-lg-3.profile-settings-sidebar
    %h4.prepend-top-0
27
      Two-Factor Authentication
Phil Hughes committed
28
    %p
29
      Increase your account's security by enabling Two-Factor Authentication (2FA).
Phil Hughes committed
30 31
  .col-lg-9
    %p
32 33
      Status: #{current_user.two_factor_enabled? ? 'Enabled' : 'Disabled'}
    - if current_user.two_factor_enabled?
34
      = link_to 'Manage two-factor authentication', profile_two_factor_auth_path, class: 'btn btn-info'
35 36 37 38
      = link_to 'Disable', profile_two_factor_auth_path,
                method: :delete,
                data: { confirm: "Are you sure? This will invalidate your registered applications and U2F devices." },
                class: 'btn btn-danger'
39
    - else
40
      .append-bottom-10
41
        = link_to 'Enable two-factor authentication', profile_two_factor_auth_path, class: 'btn btn-success'
42

Phil Hughes committed
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
%hr
- if button_based_providers.any?
  .row.prepend-top-default
    .col-lg-3.profile-settings-sidebar
      %h4.prepend-top-0
        Social sign-in
      %p
        Activate signin with one of the following services
    .col-lg-9
      %label.label-light
        Connected Accounts
      %p Click on icon to activate signin with one of the following services
      - button_based_providers.each do |provider|
        .provider-btn-group
          .provider-btn-image
            = provider_image_tag(provider)
          - if auth_active?(provider)
60
            - if unlink_allowed?(provider)
61 62
              = link_to unlink_profile_account_path(provider: provider), method: :delete, class: 'provider-btn' do
                Disconnect
63 64 65
            - else
              %a.provider-btn
                Active
66
          - else
Bryce Johnson committed
67
            = link_to omniauth_authorize_path(:user, provider), method: :post, class: 'provider-btn not-active' do
Phil Hughes committed
68 69 70 71 72
              Connect
  %hr
- if current_user.can_change_username?
  .row.prepend-top-default
    .col-lg-3.profile-settings-sidebar
73
      %h4.prepend-top-0.warning-title
Phil Hughes committed
74 75 76 77
        Change username
      %p
        Changing your username will change path to all personal projects!
    .col-lg-9
78
      = form_for @user, url: update_username_profile_path, method: :put, html: {class: "update-username"} do |f|
Phil Hughes committed
79 80 81 82
        .form-group
          = f.label :username, "Path", class: "label-light"
          .input-group
            .input-group-addon
83
              = root_url
Phil Hughes committed
84 85 86
            = f.text_field :username, required: true, class: 'form-control'
        .help-block
          Current path:
87
          #{root_url}#{current_user.username}
Phil Hughes committed
88 89 90 91 92
        .prepend-top-default
          = f.button class: "btn btn-warning", type: "submit" do
            = icon "spinner spin", class: "hidden loading-username"
            Update username
  %hr
93

Phil Hughes committed
94 95 96
- if signup_enabled?
  .row.prepend-top-default
    .col-lg-3.profile-settings-sidebar
97
      %h4.prepend-top-0.danger-title
Phil Hughes committed
98 99
        Remove account
    .col-lg-9
100
      - if @user.can_be_removed? && can?(current_user, :destroy_user, @user)
101
        %p
Phil Hughes committed
102
          Deleting an account has the following effects:
103
        = render 'users/deletion_guidance', user: current_user
Phil Hughes committed
104
        = link_to 'Delete account', user_registration_path, data: { confirm: "REMOVE #{current_user.name}? Are you sure?" }, method: :delete, class: "btn btn-remove"
105
      - else
Phil Hughes committed
106
        - if @user.solo_owned_groups.present?
107
          %p
Phil Hughes committed
108
            Your account is currently an owner in these groups:
109
            %strong= @user.solo_owned_groups.map(&:name).join(', ')
Phil Hughes committed
110 111
          %p
            You must transfer ownership or delete these groups before you can delete your account.
112 113 114
        - else
          %p
            You don't have access to delete this user.
Phil Hughes committed
115
.append-bottom-default