2012-06-30 23:35:24 +02:00
|
|
|
%h3.page_title Password
|
2012-05-19 11:00:46 +02:00
|
|
|
%hr
|
2012-08-03 17:27:39 +02:00
|
|
|
|
2012-08-11 00:07:50 +02:00
|
|
|
= form_for @user, url: profile_password_path, method: :put do |f|
|
2012-08-03 17:27:39 +02:00
|
|
|
.row
|
|
|
|
.span7
|
|
|
|
.data
|
|
|
|
%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
|
2011-12-18 17:09:59 +01:00
|
|
|
|
2012-09-12 07:23:20 +02:00
|
|
|
- if Gitlab.config.omniauth_enabled?
|
2012-08-03 17:27:39 +02:00
|
|
|
.span5.right
|
2012-09-12 07:23:20 +02:00
|
|
|
.alert.alert-info
|
2012-08-03 17:27:39 +02:00
|
|
|
%strong Tip: Use one of the following sites to login
|
2012-09-12 07:23:20 +02:00
|
|
|
%ul.unstyled
|
2012-08-03 17:27:39 +02:00
|
|
|
- User.omniauth_providers.each do |provider|
|
|
|
|
%li= link_to authbutton(provider), |
|
|
|
|
omniauth_authorize_path(User, provider) |
|
2012-05-19 11:00:46 +02:00
|
|
|
.actions
|
2012-08-29 20:23:43 +02:00
|
|
|
= f.submit 'Save', class: "btn save-btn"
|