new_credentials_plain.html 582 B

12345678910
  1. {% extends "_email/base_plain.html" %}
  2. {% block title %}{% trans board_name=settings.board_name %}Activate new Sign-In Credentials on {{ board_name }}{% endtrans %}{% endblock %}
  3. {% block content %}
  4. {% trans username=user.username %}{{ username }}, you are receiving this message because you have changed your acount's sign-in credentials.{% endtrans %}
  5. {% trans %}To confirm that you want to change your account's sign-in credentials with new ones click the link below:{% endtrans %}
  6. {{ board_address }}{% url 'usercp_credentials_activate' token=token %}
  7. {% endblock %}