change_password.txt 430 B

1234567891011121314
  1. {% extends "misago/emails/base.txt" %}
  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. {% blocktrans trimmed %}
  8. To confirm this change, click the link below:
  9. {% endblocktrans %}
  10. {{ SITE_ADDRESS }}{% url 'misago:options_form' form_name='change-password' token=token %}
  11. {% endblock content %}