mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
16 lines
578 B
Plaintext
16 lines
578 B
Plaintext
.row
|
|
= f_form_for @spree_user, :as => :spree_user, :url => spree.spree_user_password_path, :method => :put do |f|
|
|
= render :partial => 'spree/shared/error_messages', :locals => { :target => @spree_user }
|
|
%fieldset
|
|
%legend= t(:change_my_password)
|
|
.row
|
|
.large-12.columns
|
|
= f.password_field :password
|
|
.row
|
|
.large-12.columns
|
|
= f.password_field :password_confirmation
|
|
= f.hidden_field :reset_password_token
|
|
.row
|
|
.large-12.columns
|
|
= f.submit t(:update_password), :class => 'button primary'
|