confirm_plain.html 746 B

123456789101112
  1. {% extends "_email/base_plain.html" %}
  2. {% block title %}{% trans board_name=settings.board_name %}Confirm New Password Request on {{ board_name }}{% endtrans %}{% endblock %}
  3. {% block content %}
  4. {% 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 %}
  5. {% trans %}To confirm that you want to reset your account's password with new one click the link below:{% endtrans %}
  6. {{ board_address }}{% url 'reset_password' username=user.username_slug, user=user.id, token=user.token %}
  7. {% trans %}Your new password will be sent back to you in next message once you click confirmation link.{% endtrans %}
  8. {% endblock %}