Why does the password recovery email error occur on Debut theme?

Hi everyone,

My customers cannot change their password. When you fill in the email on the password recovery page, you get an error message saying that the email is not associated with any account. I’m using the Debut theme. I never changed this part of the code. This is what the concerned code snippet looks like:


        

          ## {{ 'customer.recover_password.title' | t }}
          

{{ 'customer.recover_password.subtext' | t }}

        

        
          {% form 'recover_customer_password' %}

            {% comment %}
              Add a hidden span to indicate the form was submitted succesfully.
            {% endcomment %}
            {% if form.posted_successfully? %}
              
            {% endif %}

            
            
            {%- if form.errors -%}
              
                {{ 'general.accessibility.error' | t }} 
                {% include 'icon-error' %}
                {{ form.errors.messages['form'] }}
              
            {%- endif -%}

            

              

                
              

              {{ 'customer.recover_password.cancel' | t }}
            

          {% endform %}
        

      

If anyone has a solution for this problem, thank you in advance!

Are you sure the customers trying to reset their password actually have an account? Customers that place orders will have a customer record, but not an account. An account needs to be created by the customer on the registration page (/accounts/register).

Thank you for the answer. Yes I’m sure, because I tried to create an account myself and reset the password afterwards. For the moment, I have deactivated the possibility to create an account, but it must remain a temporary solution..