reset_confirm_plain.html 609 B

1234567891011
  1. {% extends "_email/base_plain.html" %}
  2. {% load i18n %}
  3. {% load url from future %}
  4. {% block content %}
  5. {% trans %}You are receiving this message because you have requested for new password to be generated and set on your account.{% endtrans %}
  6. {% trans %}To confirm that you want to reset your account's password with new one click the link below:{% endtrans %}
  7. {{ board_address }}{% url 'reset_password' username=user.username_slug user=user.id token=user.token %}
  8. {% trans %}Your new password will be sent back to you in next message once you click confirmation link.{% endtrans %}
  9. {% endblock %}