debian-mirror-gitlab/app/views/profiles/passwords/new.html.haml

29 lines
1.1 KiB
Text
Raw Normal View History

2015-09-11 14:41:01 +05:30
- page_title "New Password"
- header_title "New Password"
2014-09-02 18:07:02 +05:30
%h3.page-title Setup new password
%hr
= form_for @user, url: profile_password_path, method: :post, html: { class: 'form-horizontal '} do |f|
%p.slead
Please set a new password before proceeding.
%br
After a successful password update you will be redirected to login screen.
-if @user.errors.any?
.alert.alert-danger
%ul
- @user.errors.full_messages.each do |msg|
%li= msg
2015-09-25 12:07:36 +05:30
2015-04-26 12:48:37 +05:30
- unless @user.password_automatically_set?
.form-group
= f.label :current_password, class: 'control-label'
.col-sm-10= f.password_field :current_password, required: true, class: 'form-control'
2014-09-02 18:07:02 +05:30
.form-group
= f.label :password, class: 'control-label'
.col-sm-10= f.password_field :password, required: true, class: 'form-control'
.form-group
= f.label :password_confirmation, class: 'control-label'
.col-sm-10
= f.password_field :password_confirmation, required: true, class: 'form-control'
.form-actions
= f.submit 'Set new password', class: "btn btn-create"