confirm_plain.html 771 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 %}Confirm New Password Request{% 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 %}To confirm that you want to reset your account's password with new one click the link below:{% endtrans %}
  8. {{ board_address }}{% url 'reset_password' username=user.username_slug, user=user.id, token=user.token %}
  9. {% trans %}Your new password will be sent back to you in next message once you click confirmation link.{% endtrans %}
  10. {% endblock %}