change_password.html 487 B

123456789101112131415161718
  1. {% extends "misago/emails/base.html" %}
  2. {% load i18n %}
  3. {% block content %}
  4. {% blocktrans trimmed with user=recipient %}
  5. {{ user }}, you are receiving this message because you have changed your password.
  6. {% endblocktrans %}
  7. <br>
  8. <br>
  9. {% blocktrans trimmed %}
  10. To confirm this change, click the link below:
  11. {% endblocktrans %}
  12. <br>
  13. <br>
  14. <a href="{{ SITE_ADDRESS }}{% url 'misago:options-confirm-password-change' token=token %}">{% trans "Save changes" %}</a>
  15. <br>
  16. {% endblock content %}