mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 06:41:42 +00:00
19 lines
747 B
Text
19 lines
747 B
Text
|
%h2= t('.change_your_password')
|
||
|
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f|
|
||
|
= render "devise/shared/error_messages", resource: resource
|
||
|
= f.hidden_field :reset_password_token
|
||
|
.field
|
||
|
= f.label :password, t('.new_password')
|
||
|
%br/
|
||
|
- if @minimum_password_length
|
||
|
%em= t('devise.shared.minimum_password_length', count: @minimum_password_length)
|
||
|
%br/
|
||
|
= f.password_field :password, autofocus: true, autocomplete: "new-password"
|
||
|
.field
|
||
|
= f.label :password_confirmation, t('.confirm_new_password')
|
||
|
%br/
|
||
|
= f.password_field :password_confirmation, autocomplete: "off"
|
||
|
.actions
|
||
|
= f.submit t('.change_my_password')
|
||
|
= render "devise/shared/links"
|