summaryrefslogtreecommitdiff
path: root/app/views/profiles/passwords/edit.html.haml
blob: 8a51a30191a730c4f03e48745097d1c682ab356f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
- 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
      Change your password
      - unless @user.password_automatically_set?
        or recover your current one
    = form_for @user, url: profile_password_path, method: :put, html: {class: "update-password"} do |f|
      = form_errors(@user)

      - unless @user.password_automatically_set?
        .form-group
          = f.label :current_password, class: 'label-light'
          = 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-light'
        = f.password_field :password, required: true, class: 'form-control'
      .form-group
        = f.label :password_confirmation, class: 'label-light'
        = f.password_field :password_confirmation, required: true, class: 'form-control'
      .prepend-top-default.append-bottom-default
        = f.submit 'Save password', class: "btn btn-create append-right-10"
        - unless @user.password_automatically_set?
          = link_to "I forgot my password", reset_profile_password_path, method: :put, class: "account-btn-link"