new_admin.html 921 B

1234567891011121314
  1. {% extends "_email/users/password/new.html" %}
  2. {% block content %}
  3. <p {{ style_p|safe }}>{% trans username=user.username %}{{ username }}, you are receiving this message because board administrator has reset your account's password with new one.{% endtrans %}</p>
  4. <p {{ style_p|safe }}>{% trans %}Your new password:{% endtrans %}</p>
  5. <div {{ style_well_big|safe }}>
  6. {{ password }}
  7. </div>
  8. <p {{ style_p|safe }}>{% trans %}You can sign in to your account using new password by following this link:{% endtrans %}</p>
  9. <a href="{{ board_address }}{{ url('sign_in') }}" {{ style_button|safe }}>{% trans %}Sign In{% endtrans %}</a>
  10. <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>
  11. <a href="{{ board_address }}{{ url('sign_in') }}" {{ style_link|safe }}>{{ board_address }}{{ url('sign_in') }}</a>
  12. {% endblock %}