When a customer clicks “forgot my password” they are taken to a page that has no content. Below is my customer/login.liquid file. Can anyone spot the problem? https://dealer.ardisam.com/account/login?checkout_url=/
{{ 'customer.recover_password.success' | t }}
{% form 'customer_login' %}
# {{ 'customer.login.title' | t }}
{{ form.errors | default_errors }}
{% if form.password_needed %}
{% endif %}
{% if form.password_needed %}
{{ 'customer.login.forgot_password' | t }}
{% endif %}
{% endform %}
#### Interested in becoming a dealer?
Dealer Account [Application](https://jtpeterson3.wufoo.com/forms/rfdpbdm0n2494k).
{% comment %}
JS shows/hides this form in ShopifySlate.loginForms()
{% endcomment %}
## {{ 'customer.recover_password.title' | t }}
{{ 'customer.recover_password.subtext' | t }}
{% form 'recover_customer_password' %}
{{ form.errors | default_errors }}
{% comment %}
Add a hidden span to indicate the form was submitted succesfully.
{% endcomment %}
{% if form.posted_successfully? %}
{% endif %}
{% endform %}
{% comment %}
If accounts are set as optional, the following will be shown as an option
during checkout, not on the default /login page.
{% endcomment %}
{% if shop.checkout.guest_login %}
## {{ 'customer.login.guest_title' | t }}
{% form 'guest_login' %}
{% endform %}
{% endif %}
