BigW Consortium Gitlab

show.html.haml 3.01 KB
Newer Older
1
- page_title "Account"
2 3
- if current_user.ldap_user?
  .alert.alert-info
4 5
    Some options are unavailable for LDAP accounts

6
.account-page
7 8
  %fieldset.update-token
    %legend
9
      Reset Private token
10 11 12 13 14 15 16 17 18 19 20 21
    %div
      = form_for @user, url: reset_private_token_profile_path, method: :put do |f|
        .data
          %p
            Your private token is used to access application resources without authentication.
            %br
            It can be used for atom feeds or the API.
            %span.cred
              Keep it secret!

          %p.cgray
            - if current_user.private_token
22 23
              = text_field_tag "token", current_user.private_token, class: "form-control"
              %div
24
                = f.submit 'Reset private token', data: { confirm: "Are you sure?" }, class: "btn btn-primary btn-build-token"
25 26 27 28 29 30 31
            - else
              %span You don`t have one yet. Click generate to fix it.
              = f.submit 'Generate', class: "btn success btn-build-token"


  - if show_profile_social_tab?
    %fieldset
32 33
      %legend Connected Accounts
      .oauth-buttons.append-bottom-10
34 35
        %p Click on icon to activate signin with one of the following services
        - enabled_social_providers.each do |provider|
36 37 38 39 40 41
          .btn-group
            = link_to oauth_image_tag(provider), omniauth_authorize_path(User, provider),
              class: "btn btn-lg #{'active' if oauth_active?(provider)}"
            - if oauth_active?(provider)
              = link_to unlink_profile_account_path(provider: provider), method: :delete, class: 'btn btn-lg' do
                %i.fa.fa-close
42 43 44 45

  - if show_profile_username_tab?
    %fieldset.update-username
      %legend
46
        Change Username
47 48
      = form_for @user, url: update_username_profile_path,  method: :put, remote: true do |f|
        %p
49
          Changing your username will change path to all personal projects!
50
        %div
51
          = f.text_field :username, required: true, class: 'form-control'
52
           
53 54
        .loading-gif.hide
          %p
55
            %i.fa.fa-spinner.fa-spin
56
            Saving new username
57 58 59
        %p.light
          = user_url(@user)
        %div
60
          = f.submit 'Save username', class: "btn btn-warning"
61 62 63 64 65 66 67 68 69 70 71 72 73 74

  - if show_profile_remove_tab?
    %fieldset.remove-account
      %legend
        Remove account
      %div
        %p Deleting an account has the following effects:
        %ul
          %li All user content like authored issues, snippets, comments will be removed
          - rp = current_user.personal_projects.count
          - unless rp.zero?
            %li #{pluralize rp, 'personal project'} will be removed and cannot be restored
          - if current_user.solo_owned_groups.present?
            %li
75
              The following groups will be abandoned. You should transfer or remove them:
76
              %strong #{current_user.solo_owned_groups.map(&:name).join(', ')}
77
        = link_to 'Delete account', user_registration_path, data: { confirm: "REMOVE #{current_user.name}? Are you sure?" }, method: :delete, class: "btn btn-remove"
Valery Sizov committed
78