confirm.html 745 B

1234567891011121314151617181920212223
  1. {% extends "misago/emails/base.html" %}
  2. {% load i18n misago_capture %}
  3. {% block content %}
  4. {% blocktrans trimmed with username=recipient.username %}
  5. {{ username }}, you are receiving this message because you have started forgotten password change procedure for your forum account.
  6. {% endblocktrans %}
  7. <br>
  8. <br>
  9. {% blocktrans trimmed %}
  10. To replace your account password with new one click the link below:
  11. {% endblocktrans %}
  12. <br>
  13. <br>
  14. <a href="{{ SITE_ADDRESS }}{% url 'misago:reset_password_confirm' user_id=recipient.pk token=confirmation_token %}">{% trans "Change my password" %}</a>
  15. <br>
  16. <br>
  17. {% blocktrans trimmed %}
  18. New password will be set on your account and sent to you in next e-mail.
  19. {% endblocktrans %}
  20. <br>
  21. {% endblock content %}