summaryrefslogtreecommitdiff
path: root/app/views/settings/passwords/edit.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/settings/passwords/edit.html.haml')
-rw-r--r--app/views/settings/passwords/edit.html.haml35
1 files changed, 35 insertions, 0 deletions
diff --git a/app/views/settings/passwords/edit.html.haml b/app/views/settings/passwords/edit.html.haml
new file mode 100644
index 00000000000..f2b4ac3f9fa
--- /dev/null
+++ b/app/views/settings/passwords/edit.html.haml
@@ -0,0 +1,35 @@
+- breadcrumb_title _('Edit Password')
+- page_title _('Password')
+- @content_class = "limit-container-width" unless fluid_layout
+
+.row.prepend-top-default
+ .col-lg-4.profile-settings-sidebar
+ %h4.prepend-top-0
+ = page_title
+ %p
+ = _('After a successful password update, you will be redirected to the login page where you can log in with your new password.')
+ .col-lg-8
+ %h5.prepend-top-0
+ - if @user.password_automatically_set
+ = _('Change your password')
+ - else
+ = _('Change your password or recover your current one')
+ = form_for @user, url: settings_password_path, method: :put, html: {class: "update-password"} do |f|
+ = form_errors(@user)
+
+ - unless @user.password_automatically_set?
+ .form-group
+ = f.label :current_password, _('Current password'), class: 'label-bold'
+ = f.password_field :current_password, required: true, class: 'form-control'
+ %p.form-text.text-muted
+ = _('You must provide your current password in order to change it.')
+ .form-group
+ = f.label :password, _('New password'), class: 'label-bold'
+ = f.password_field :password, required: true, class: 'form-control'
+ .form-group
+ = f.label :password_confirmation, _('Password confirmation'), class: 'label-bold'
+ = f.password_field :password_confirmation, required: true, class: 'form-control'
+ .prepend-top-default.append-bottom-default
+ = f.submit _('Save password'), class: "btn btn-success append-right-10"
+ - unless @user.password_automatically_set?
+ = link_to _('I forgot my password'), reset_settings_password_path, method: :put, class: "account-btn-link"