change_email_password.html 532 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 made changes in your account email and password.
  6. {% endblocktrans %}
  7. <br>
  8. <br>
  9. {% blocktrans trimmed %}
  10. To confirm those changes, click the link below:
  11. {% endblocktrans %}
  12. <br>
  13. <br>
  14. <a href="{{ SITE_ADDRESS }}{% url 'misago:usercp_confirm_email_password_change' token=credentials_token %}">{% trans "Save changes" %}</a>
  15. <br>
  16. {% endblock content %}