2015-04-26 12:48:37 +05:30
|
|
|
- if current_user.ldap_user?
|
|
|
|
.alert.alert-info
|
2014-09-02 18:07:02 +05:30
|
|
|
Some options are unavailable for LDAP accounts
|
|
|
|
|
|
|
|
.account-page
|
|
|
|
%fieldset.update-token
|
|
|
|
%legend
|
2015-04-26 12:48:37 +05:30
|
|
|
Reset Private token
|
2014-09-02 18:07:02 +05:30
|
|
|
%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
|
|
|
|
= text_field_tag "token", current_user.private_token, class: "form-control"
|
|
|
|
%div
|
2015-04-26 12:48:37 +05:30
|
|
|
= f.submit 'Reset private token', data: { confirm: "Are you sure?" }, class: "btn btn-primary btn-build-token"
|
2014-09-02 18:07:02 +05:30
|
|
|
- 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
|
2015-04-26 12:48:37 +05:30
|
|
|
%legend Connected Accounts
|
|
|
|
.oauth-buttons.append-bottom-10
|
2014-09-02 18:07:02 +05:30
|
|
|
%p Click on icon to activate signin with one of the following services
|
|
|
|
- enabled_social_providers.each do |provider|
|
2015-04-26 12:48:37 +05:30
|
|
|
.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
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
- if show_profile_username_tab?
|
|
|
|
%fieldset.update-username
|
|
|
|
%legend
|
2015-04-26 12:48:37 +05:30
|
|
|
Change Username
|
2014-09-02 18:07:02 +05:30
|
|
|
= form_for @user, url: update_username_profile_path, method: :put, remote: true do |f|
|
|
|
|
%p
|
|
|
|
Changing your username will change path to all personal projects!
|
|
|
|
%div
|
|
|
|
= f.text_field :username, required: true, class: 'form-control'
|
|
|
|
|
|
|
|
.loading-gif.hide
|
|
|
|
%p
|
2015-04-26 12:48:37 +05:30
|
|
|
%i.fa.fa-spinner.fa-spin
|
2014-09-02 18:07:02 +05:30
|
|
|
Saving new username
|
|
|
|
%p.light
|
|
|
|
= user_url(@user)
|
|
|
|
%div
|
2015-04-26 12:48:37 +05:30
|
|
|
= f.submit 'Save username', class: "btn btn-warning"
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
- 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
|
|
|
|
The following groups will be abandoned. You should transfer or remove them:
|
|
|
|
%strong #{current_user.solo_owned_groups.map(&:name).join(', ')}
|
|
|
|
= link_to 'Delete account', user_registration_path, data: { confirm: "REMOVE #{current_user.name}? Are you sure?" }, method: :delete, class: "btn btn-remove"
|
2015-04-26 12:48:37 +05:30
|
|
|
|