customers/reset_password
The customers/reset_password
template renders the password reset page, which hosts the form to reset the password for a customer account.
Refer to the customers/reset_password template and its main section in Dawn for an example implementation.

Anchor to LocationLocation
The customers/reset_password
template is located in the templates
> customers
directory of the theme:
Anchor to ContentContent
You should include the password reset form in your customers/account
template or a section inside of the template.
If you're using a JSON template, then any HTML or Liquid code needs to be included in a section that's referenced by the template.
Anchor to The password reset formThe password reset form
The password reset form can be added with the Liquid form
tag and accompanying 'reset_customer_password'
parameter. Within the form tag block, you need to include the following:
Input | type | name |
---|---|---|
Password | password | customer[password] |
Password confirmation | password | customer[password_confirmation] |
For example:
Anchor to UsageUsage
When working with the customers/account
template, you should familiarize yourself with previewing the template. To preview the customers/reset_password
template, perform the following steps:
-
Fill out the password recovery form on the login page.
-
Check your email for the "Customer account password reset" email.
-
Click the link in the email. This will take you to the customer password reset page.