{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Reset Password - {{ login_brand_name }}{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Reset Password

Follow the steps below to reset your password using email or SMS verification.

{% if error %}
{{ error }}
{% endif %} {% if success %}
{{ success_title }} {{ success_message }}
← Back to Login {% else %} {% if step == 1 %}
{% elif step == 2 %}

Account found: {{ username }} at {{ shop_name }}

{% if user_email %}
Email
{{ user_email }}
{% endif %} {% if user_phone %}
📱
SMS
{{ user_phone }}
{% endif %}
{% if not user_email and not user_phone %}
No email or phone number is associated with this account. Please contact your shop admin or server owner to reset your password.
{% endif %}
{% if code_display %}
Your verification code ({{ code_method }}):
{{ code_display }}
This code expires in 10 minutes. In production, this would be sent to your {{ code_method }}.
{% endif %} {% elif step == 3 %}

A 6-digit code was sent via {{ method_label }}.

{% if code_display %}
Your verification code ({{ code_method or method }}):
{{ code_display }}
This code expires in 10 minutes.
{% endif %}
{% elif step == 4 %}

Code verified! Set your new password below.

{% endif %} ← Back to Login {% endif %}
{% endblock %}