reset_new_plain.html 467 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 %}Your new password:{% endtrans %} {{ password }}
  7. {% trans %}You can sign in to your account using new password by following this link:{% endtrans %}
  8. {{ board_address }}{% url 'sign_in' %}
  9. {% endblock %}