2015-09-11 14:41:01 +05:30
|
|
|
- page_title "Account"
|
2017-09-10 17:25:29 +05:30
|
|
|
- @content_class = "limit-container-width" unless fluid_layout
|
2016-08-24 12:49:21 +05:30
|
|
|
= render 'profiles/head'
|
2015-09-25 12:07:36 +05:30
|
|
|
|
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
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
.row.prepend-top-default
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-lg-4.profile-settings-sidebar
|
2016-06-02 11:05:42 +05:30
|
|
|
%h4.prepend-top-0
|
2016-06-16 23:09:34 +05:30
|
|
|
Two-Factor Authentication
|
2016-06-02 11:05:42 +05:30
|
|
|
%p
|
2016-06-16 23:09:34 +05:30
|
|
|
Increase your account's security by enabling Two-Factor Authentication (2FA).
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-lg-8
|
2016-06-02 11:05:42 +05:30
|
|
|
%p
|
2016-06-16 23:09:34 +05:30
|
|
|
Status: #{current_user.two_factor_enabled? ? 'Enabled' : 'Disabled'}
|
|
|
|
- if current_user.two_factor_enabled?
|
2017-08-17 22:00:37 +05:30
|
|
|
= link_to 'Manage two-factor authentication', profile_two_factor_auth_path, class: 'btn btn-info'
|
2016-06-02 11:05:42 +05:30
|
|
|
- else
|
2016-06-16 23:09:34 +05:30
|
|
|
.append-bottom-10
|
2017-08-17 22:00:37 +05:30
|
|
|
= link_to 'Enable two-factor authentication', profile_two_factor_auth_path, class: 'btn btn-success'
|
2016-06-16 23:09:34 +05:30
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
%hr
|
|
|
|
- if button_based_providers.any?
|
|
|
|
.row.prepend-top-default
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-lg-4.profile-settings-sidebar
|
2016-06-02 11:05:42 +05:30
|
|
|
%h4.prepend-top-0
|
|
|
|
Social sign-in
|
|
|
|
%p
|
|
|
|
Activate signin with one of the following services
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-lg-8
|
2016-06-02 11:05:42 +05:30
|
|
|
%label.label-light
|
2015-09-11 14:41:01 +05:30
|
|
|
Connected Accounts
|
2016-06-02 11:05:42 +05:30
|
|
|
%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)
|
2017-08-17 22:00:37 +05:30
|
|
|
- if unlink_allowed?(provider)
|
2016-06-22 15:30:34 +05:30
|
|
|
= link_to unlink_profile_account_path(provider: provider), method: :delete, class: 'provider-btn' do
|
|
|
|
Disconnect
|
2017-08-17 22:00:37 +05:30
|
|
|
- else
|
|
|
|
%a.provider-btn
|
|
|
|
Active
|
2016-06-02 11:05:42 +05:30
|
|
|
- else
|
2017-08-17 22:00:37 +05:30
|
|
|
= link_to omniauth_authorize_path(:user, provider), method: :post, class: 'provider-btn not-active' do
|
2016-06-02 11:05:42 +05:30
|
|
|
Connect
|
|
|
|
%hr
|
|
|
|
- if current_user.can_change_username?
|
|
|
|
.row.prepend-top-default
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-lg-4.profile-settings-sidebar
|
2016-06-16 23:09:34 +05:30
|
|
|
%h4.prepend-top-0.warning-title
|
2016-06-02 11:05:42 +05:30
|
|
|
Change username
|
|
|
|
%p
|
2018-03-17 18:26:18 +05:30
|
|
|
Changing your username can have unintended side effects.
|
|
|
|
= succeed '.' do
|
|
|
|
= link_to 'Learn more', help_page_path('user/profile/index', anchor: 'changing-your-username'), target: '_blank'
|
2017-09-10 17:25:29 +05:30
|
|
|
.col-lg-8
|
2017-08-17 22:00:37 +05:30
|
|
|
= form_for @user, url: update_username_profile_path, method: :put, html: {class: "update-username"} do |f|
|
2016-06-02 11:05:42 +05:30
|
|
|
.form-group
|
|
|
|
= f.label :username, "Path", class: "label-light"
|
|
|
|
.input-group
|
|
|
|
.input-group-addon
|
2016-11-03 12:29:30 +05:30
|
|
|
= root_url
|
2016-06-02 11:05:42 +05:30
|
|
|
= f.text_field :username, required: true, class: 'form-control'
|
|
|
|
.help-block
|
|
|
|
Current path:
|
2017-08-17 22:00:37 +05:30
|
|
|
#{root_url}#{current_user.username}
|
2016-06-02 11:05:42 +05:30
|
|
|
.prepend-top-default
|
|
|
|
= f.button class: "btn btn-warning", type: "submit" do
|
|
|
|
= icon "spinner spin", class: "hidden loading-username"
|
|
|
|
Update username
|
|
|
|
%hr
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
.row.prepend-top-default
|
|
|
|
.col-lg-4.profile-settings-sidebar
|
|
|
|
%h4.prepend-top-0.danger-title
|
|
|
|
= s_('Profiles|Delete account')
|
|
|
|
.col-lg-8
|
|
|
|
- if @user.can_be_removed? && can?(current_user, :destroy_user, @user)
|
|
|
|
%p
|
|
|
|
= s_('Profiles|Deleting an account has the following effects:')
|
|
|
|
= render 'users/deletion_guidance', user: current_user
|
|
|
|
|
|
|
|
%button#delete-account-button.btn.btn-danger.disabled{ data: { toggle: 'modal',
|
|
|
|
target: '#delete-account-modal' } }
|
|
|
|
= s_('Profiles|Delete account')
|
|
|
|
|
|
|
|
#delete-account-modal{ data: { action_url: user_registration_path,
|
|
|
|
confirm_with_password: ('true' if current_user.confirm_deletion_with_password?),
|
|
|
|
username: current_user.username } }
|
|
|
|
- else
|
|
|
|
- if @user.solo_owned_groups.present?
|
|
|
|
%p
|
|
|
|
= s_('Profiles|Your account is currently an owner in these groups:')
|
|
|
|
%strong= @user.solo_owned_groups.map(&:name).join(', ')
|
2016-06-02 11:05:42 +05:30
|
|
|
%p
|
2018-03-17 18:26:18 +05:30
|
|
|
= s_('Profiles|You must transfer ownership or delete these groups before you can delete your account.')
|
2016-06-02 11:05:42 +05:30
|
|
|
- else
|
2018-03-17 18:26:18 +05:30
|
|
|
%p
|
|
|
|
= s_("Profiles|You don't have access to delete this user.")
|
2016-06-02 11:05:42 +05:30
|
|
|
.append-bottom-default
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
- content_for :page_specific_javascripts do
|
|
|
|
= webpack_bundle_tag('account')
|