27 lines
861 B
Plaintext
27 lines
861 B
Plaintext
{% load i18n %}
|
|
{% load static %}
|
|
{% autoescape off %}
|
|
|
|
{% trans "Password Reset Request" %}
|
|
|
|
{% trans "Hello," %}
|
|
|
|
{% blocktrans %}You are receiving this email because you or someone else has requested a password reset for your account at{% endblocktrans %} {{ current_site.name }}.
|
|
|
|
------------------------------------------------------
|
|
{% trans "Click Here to Reset Your Password" %}
|
|
{{ password_reset_url }}
|
|
------------------------------------------------------
|
|
|
|
{% trans "This link is only valid for a limited time." %}
|
|
|
|
{% trans "If you did not request a password reset, please ignore this email. Your password will remain unchanged." %}
|
|
|
|
{% trans "Thank you," %}
|
|
{% trans "KAAUH ATS Team" %}
|
|
|
|
---
|
|
{% trans "If the button above does not work, copy and paste the following link into your browser:" %}
|
|
{{ password_reset_url }}
|
|
|
|
{% endautoescape %} |