mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
15 lines
441 B
Plaintext
Executable File
15 lines
441 B
Plaintext
Executable File
= render partial: 'spree/shared/error_messages', locals: { target: @spree_user }
|
|
|
|
%div{"id" => "forgot-password"}
|
|
%h6= Spree.t(:forgot_password)
|
|
|
|
%p= Spree.t(:instructions_to_reset_password)
|
|
|
|
= form_for Spree::User.new, as: :spree_user, url: spree.reset_password_path do |f|
|
|
%p
|
|
= f.label :email, Spree.t(:email)
|
|
%br
|
|
= f.email_field :email
|
|
%p
|
|
= f.submit Spree.t(:reset_password), class: 'button primary'
|