Hello,
I’m facing issue with reset password liquid page.
here we have to display the email of user who is requesting to reset there password
It was working good few days ago.
here is my code:
{%- form ‘reset_customer_password’ -%}
Enter a new password for {{email}}
Password
<input type=“password” value=“” name=“customer[password]” id=“reset_password” {% if form.errors contains “password” %} class=“error” {% endif %}>
Password Confirmation
<input type=“password” value=“” name=“customer[password_confirmation]” id=“password_confirmation” {% if form.errors contains “password_confirmation” %} class=“error”{% endif %}>
Steps to get the issue:
-
When user want to reset there password he use this link
https://www.sumpalarm.com/account/login and click on Forgot or Need to reset your password?
and enter email to get the reset password link. -
An email with reset password link sent to the entered email.
-
Once user click on the link he redirects to reset password page.
where user have to enter password and confirm password.
On this page we are displaying email on with text “Enter a new password for”
Now it seems email not showing on the page, I used all objects to get email on the reset password page.
Note: This "email " which we are displaying on the reset password page is used to reset password on backend for the user.