{% extends "partials/layout.html" %} {% block pageContent %}

{% trans %}Password Reset{% endtrans %}

{% if step == "confirm" %} {% trans %}Check your e-mail for the confirmation link.{% endtrans %} {% elif step == "complete" %} {% trans %}Your password has been reset successfully.{% endtrans %} {% elif resetkey %} {% include "partials/error.html" %}

{% trans %}Confirm your user name or primary e-mail address:{% endtrans %}
{% trans %}Enter your new password:{% endtrans %}
{% trans %}Confirm your new password:{% endtrans %}

{% else %} {% set url = "https://mailman.archlinux.org/mailman/listinfo/aur-general" %} {{ "If you have forgotten the user name and the primary e-mail " "address you used to register, please send a message to the " "%saur-general%s mailing list." | tr | format( '' | format(url), "") | safe }}

{% include "partials/error.html" %}

{% trans %}Enter your user name or your primary e-mail address:{% endtrans %}

{% endif %}

{% endblock %}