mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 23:56:04 +01:00
15 lines
569 B
Text
15 lines
569 B
Text
- provide(:title, generate_title("Reset Password"))
|
|
.container
|
|
%h1 Change your password
|
|
= bootstrap_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f|
|
|
= devise_error_messages!
|
|
|
|
= f.hidden_field :reset_password_token
|
|
|
|
= f.password_field :password, autofocus: true, autocomplete: "off", label: "New password"
|
|
= f.password_field :password_confirmation, autocomplete: "off", label: "Confirm new password"
|
|
|
|
= f.submit "Change my password"
|
|
|
|
= render "devise/shared/links"
|
|
= render "shared/links"
|