30 lines
976 B
Plaintext
30 lines
976 B
Plaintext
- if Gitlab.config.omniauth_enabled?
|
|
%h3.page_title Accounts
|
|
%hr
|
|
%p.hint Tip: Click on icon to activate sigin with one of the following services
|
|
.oauth_select_holder
|
|
- User.omniauth_providers.each do |provider|
|
|
%span{class: oauth_active_class(provider) }
|
|
= link_to authbutton(provider, 32), omniauth_authorize_path(User, provider)
|
|
|
|
.clearfix.prepend-top-20
|
|
%h3.page_title Password
|
|
%hr
|
|
|
|
= form_for @user, url: profile_password_path, method: :put do |f|
|
|
%p.slead After successful password update you will be redirected to login page where you should login with new password
|
|
-if @user.errors.any?
|
|
.alert-message.block-message.error
|
|
%ul
|
|
- @user.errors.full_messages.each do |msg|
|
|
%li= msg
|
|
|
|
.clearfix
|
|
= f.label :password
|
|
.input= f.password_field :password
|
|
.clearfix
|
|
= f.label :password_confirmation
|
|
.input= f.password_field :password_confirmation
|
|
.actions
|
|
= f.submit 'Save', class: "btn save-btn"
|