new_plain.html 636 B

1234567891011121314
  1. {% extends "_email/base_plain.html" %}
  2. {% load i18n %}
  3. {% load url from future %}
  4. {% block title %}{% trans board_name=settings.board_name %}Your New Password on {{ board_name }}{% endtrans %}{% endblock %}
  5. {% block content %}
  6. {% trans username=user.username %}{{ username }}, you are receiving this message because you have requested for new password to be generated and set on your account.{% endtrans %}
  7. {% trans %}Your new password:{% endtrans %} {{ password }}
  8. {% trans %}You can sign in to your account using new password by following this link:{% endtrans %}
  9. {{ board_address }}{% url 'sign_in' %}
  10. {% endblock %}