{% extends "base.html" %} {% block title %}Password Resets{% endblock %} {% block content %}

Pending Password Resets

These are active, unused reset links. Copy the URL and send it to the user via any out-of-band channel (PM, chat, phone, etc.). Links expire after 24 hours or once used. Click Revoke to cancel a link early.

{% if tokens %} {% for item in tokens %} {% endfor %}
User Requested Expires From IP Reset URL
{{ item.token.user.username }} {{ item.token.created_at.strftime('%Y-%m-%d %H:%M') }} {{ item.token.expires_at.strftime('%Y-%m-%d %H:%M') }} {{ item.token.requested_ip or '—' }}
{% else %}
No pending password reset requests.
{% endif %} {% endblock %}