BigW Consortium Gitlab

show.html.haml 4.67 KB
Newer Older
1
- page_title "Account"
2
- @content_class = "limit-container-width" unless fluid_layout
Connor Shea committed
3
= render 'profiles/head'
4

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

Phil Hughes committed
9
.row.prepend-top-default
10
  .col-lg-4.profile-settings-sidebar
Phil Hughes committed
11
    %h4.prepend-top-0
12
      Private Tokens
Phil Hughes committed
13
    %p
14 15
      Keep these tokens secret, anyone with access to them can interact with
      GitLab as if they were you.
16
  .col-lg-8.private-tokens-reset
Alexis Reigel committed
17
    = 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
18

Alexis Reigel committed
19
    = 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.' }
20

21
    - if incoming_email_token_enabled?
Alexis Reigel committed
22
      = 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.' }
23

Phil Hughes committed
24 25
%hr
.row.prepend-top-default
26
  .col-lg-4.profile-settings-sidebar
Phil Hughes committed
27
    %h4.prepend-top-0
28
      Two-Factor Authentication
Phil Hughes committed
29
    %p
30
      Increase your account's security by enabling Two-Factor Authentication (2FA).
31
  .col-lg-8
Phil Hughes committed
32
    %p
33 34
      Status: #{current_user.two_factor_enabled? ? 'Enabled' : 'Disabled'}
    - if current_user.two_factor_enabled?
35
      = link_to 'Manage two-factor authentication', profile_two_factor_auth_path, class: 'btn btn-info'
36 37 38 39
      = 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'
40
    - else
41
      .append-bottom-10
42
        = link_to 'Enable two-factor authentication', profile_two_factor_auth_path, class: 'btn btn-success'
43

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

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