summaryrefslogtreecommitdiff
path: root/app/views/profiles/passwords/edit.html.haml
blob: ab070c09bebf5d4775600e5fbe9377c8dfbde533 (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
35
36
37
38
39
40
- page_title "Password"
- header_title page_title, edit_profile_password_path

.alert.alert-help.prepend-top-default
  - if @user.password_automatically_set?
    Set your password.
  - else
    Change your password or recover your current one.

.update-password.prepend-top-default
  = form_for @user, url: profile_password_path, method: :put, html: { class: 'form-horizontal' }  do |f|
    %div
      %p.slead
        - unless @user.password_automatically_set?
          You must provide current password in order to change it.
          %br
        After a successful password update, you will be redirected to the login page where you can log in with your new password.
      -if @user.errors.any?
        .alert.alert-danger
          %ul
            - @user.errors.full_messages.each do |msg|
              %li= msg
      - 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'
            %div
              = link_to "Forgot your password?", reset_profile_password_path, method: :put

      .form-group
        = f.label :password, 'New 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 'Save password', class: "btn btn-create"