OTP sent to: {{ session.get('reset_email', 'N/A') }}
{% if not config.PRODUCTION_MODE and session.get('reset_otp') %}
DEBUG - OTP for testing: {{ session.get('reset_otp') }}
This will be removed in production
{% endif %}
{% if error %}
{{ error }}
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}