new_html.html 1.0 KB

12345678910111213141516
  1. {% extends "_email/base_html.html" %}
  2. {% block title %}{% trans board_name=settings.board_name %}Your New Password on {{ board_name }}{% endtrans %}{% endblock %}
  3. {% block content %}
  4. <p {{ style_p|safe }}>{% 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 %}</p>
  5. <p {{ style_p|safe }}>{% trans %}Your new password:{% endtrans %}</p>
  6. <div {{ style_well_big|safe }}>
  7. {{ password }}
  8. </div>
  9. <p {{ style_p|safe }}>{% trans %}You can sign in to your account using new password by following this link:{% endtrans %}</p>
  10. <a href="{{ board_address }}{% url 'sign_in' %}" {{ style_button|safe }}>{% trans %}Sign In{% endtrans %}</a>
  11. <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>
  12. <a href="{{ board_address }}{% url 'sign_in' %}" {{ style_link|safe }}>{{ board_address }}{% url 'sign_in' %}</a>
  13. {% endblock %}