{% extends "admin/base.html" %} {% block title %}Password Reset Email Template - Admin{% endblock %} {% block admin_content %}

Password Reset Email Template

Back to Request All Tokens
Token Information

Token Status: {% if token.is_used %} Used - This token has already been used {% elif token.is_expired %} Expired - This token has expired {% else %} Active - This token is ready to use {% endif %}

Expires: {{ token.expires_at.strftime('%B %d, %Y at %I:%M %p') }}

For User: {{ token.user.nickname }} ({{ token.user.email }})

Email Template - Copy and Send to User
Use this if you prefer to compose your own email message.
Instructions for Admin
How to Send:
  1. Copy the subject and email body above
  2. Open your email client (Gmail, Outlook, etc.)
  3. Create a new email to: {{ token.user.email }}
  4. Paste the subject and body
  5. Send the email
  6. Return here to monitor if the link was used
Security Notes:
  • Token expires in 24 hours automatically
  • Token can only be used once
  • Monitor token usage below
  • Do not share the reset link publicly
  • User must enter a new password to complete reset
Token Usage Tracking
{{ 'Yes' if token.is_used else 'No' }}
Used
{{ 'Yes' if token.is_expired else 'No' }}
Expired
{% if token.used_at %} {{ token.used_at.strftime('%m/%d %H:%M') }} {% else %} - {% endif %}
Used At
{% if token.user_ip %} {{ token.user_ip }} {% else %} - {% endif %}
User IP
{% endblock %}