{% extends "_market/_layouts/auth" %} {% if currentUser %} {% if market.vendors.getCurrentVendor() %} {% redirect url('market') %} {% else %} {% redirect url('/') %} {% endif %} {% endif %} {% set title = 'Forgot Password'|t('market') %} {% block main %}
{% include '_market/_layouts/_logo.html' with { class: 'w-full text-brand-500' } %}

Forgot your password?

Enter your email address here and we’ll send you a link to reset it.

{{ csrfInput() }} {{ actionInput('users/send-password-reset-email') }} {{ redirectInput('market/forgot-password') }}
{% if errors ?? false %}
{# Heroicon name: solid/exclamation-circle #}

{{ errors[0] }}

{% endif %}
{% set flashes = craft.app.session.getAllFlashes() %} {% if flashes and flashes['notice'] is defined %}
{# Heroicon name: solid/check-circle #}

{{ flashes['notice'] }}

{% endif %}
{% endblock %}