change_email_password.txt 466 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 made changes in your account email and password.
  6. {% endblocktrans %}
  7. {% blocktrans trimmed %}
  8. To confirm those changes, click the link below:
  9. {% endblocktrans %}
  10. {{ SITE_ADDRESS }}{% url 'misago:usercp_confirm_email_password_change' token=credentials_token %}
  11. {% endblock content %}