gitlabhq/app/views/profile/password.html.haml

41 lines
1.1 KiB
Plaintext
Raw Normal View History

2011-10-08 23:36:38 +02:00
%p Note: after success password update you will be redirected to login page where you should login with new password
= form_for @user, :url => profile_password_path, :method => :put do |f|
-if @user.errors.any?
#error_explanation
%h2= "#{pluralize(@user.errors.count, "error")} prohibited this password from being saved:"
%ul
- @user.errors.full_messages.each do |msg|
%li= msg
.form-row
2011-10-08 23:36:38 +02:00
= f.label :password
%br
= f.password_field :password
.form-row
2011-10-08 23:36:38 +02:00
= f.label :password_confirmation
%br
= f.password_field :password_confirmation
.actions
2011-11-22 14:14:23 +01:00
= f.submit 'Save', :class => "grey-button"
2011-10-08 23:36:38 +02:00
2011-11-15 14:08:20 +01:00
%br
%br
%br
= form_for @user, :url => profile_reset_private_token_path, :method => :put do |f|
%p
Current private token:
2011-12-18 17:09:59 +01:00
- if current_user.private_token
%strong
= current_user.private_token
%em.cred
keep it in secret!
- else
%strong don`t have
2011-11-15 14:08:20 +01:00
.actions
2011-12-18 17:09:59 +01:00
- if current_user.private_token
= f.submit 'Reset', :confirm => "Are you sure?", :class => "grey-button"
- else
= f.submit 'Generate', :class => "grey-button"