new_credentials_html.html 1.1 KB

123456789101112131415
  1. {% extends "_email/base_html.html" %}
  2. {% load i18n %}
  3. {% load url from future %}
  4. {% block title %}{% trans board_name=settings.board_name %}Activate new Sign-In Credentials{% endtrans %}{% endblock %}
  5. {% block content %}
  6. <p {{ style_p|safe }}>{% trans username=user.username %}{{ username }}, you are receiving this message because you have changed your acount's sign-in credentials.{% endtrans %}</p>
  7. <p {{ style_p|safe }}>{% trans %}To confirm that you want to change your account's sign-in credentials with new ones click the link below:{% endtrans %}</p>
  8. <a href="{{ board_address }}{% url 'usercp_credentials_activate' token=token %}" {{ style_button|safe }}>{% trans %}Activate New Credentials{% endtrans %}</a>
  9. <p {{ style_p|safe }}>{% trans %}If the above link is not clickable, copy and paste this link into your web browser's address bar:{% endtrans %}</p>
  10. <a href="{{ board_address }}{% url 'usercp_credentials_activate' token=token %}" {{ style_link|safe }}>{{ board_address }}{% url 'usercp_credentials_activate' token=token %}</a>
  11. {% endblock %}