{% extends "_market/_layouts/auth" %} {% set title = 'Reset Password'|t('market') %} {% block main %}
{% include '_market/_layouts/_logo.html' with { class: 'w-full text-brand-500' } %}

Choose a new password

{{ csrfInput() }} {{ actionInput('users/set-password') }} {{ hiddenInput('code', code) }} {{ hiddenInput('id', id) }}
{% 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 %}