activation_0_html.html 1.3 KB

1234567891011121314151617
  1. {% extends "_email/base_html.html" %}
  2. {% load i18n %}
  3. {% load url from future %}
  4. {% block content %}
  5. <p style="margin: 12px 0px; padding: 0px;">{% trans %}You are receiving this message because you have used this email address to sign up on our forums.{% endtrans %}</p>
  6. <h2 style="margin: 12px 0px; padding: 0px;">Your Account Data</h2>
  7. <div style="background-color: #EFEFEF; border-radius: 3px; margin: 0px; padding: 8px;">
  8. <strong>{% trans %}Username{% endtrans %}:</strong> {{ user.username }}<br>
  9. <strong>{% trans %}E-mail{% endtrans %}:</strong> {{ user.email }}<br>
  10. <strong>{% trans %}Password{% endtrans %}:</strong> {{ password }}
  11. </div>
  12. <p style="margin: 12px 0px; padding: 0px;">{% trans %}This is only time you will receive your current password. Due to security reasons we dont store members passwords as they are entered on registration, instead we encrypt those password in un-reversible manner to keep them safe.{% endtrans %}</p>
  13. {% block activation_instructions %}{% endblock %}
  14. <p style="margin: 12px 0px; margin-bottom 0px; padding: 0px;">{% trans %}Welcome aboard!{% endtrans %}<br><a href="{{ board_address }}">{% if settings.board_index_title %}{{ settings.board_index_title }}{% else %}{{ settings.board_name }}{% endif %}</a></p>
  15. {% endblock %}