activation_1_html.html 793 B

1234567891011
  1. {% extends "_email/auth/activation_0_html.html" %}
  2. {% load i18n %}
  3. {% load url from future %}
  4. {% block activation_instructions %}
  5. <h2 style="margin: 12px 0px; padding: 0px;">Account Activation</h2>
  6. <p style="margin: 12px 0px; padding: 0px;">{% trans %}We require our members to prove validity of e-mail address used during registration. To prove that you are owner of e-mail address used to create this account, click the link below:{% endtrans %}</p>
  7. <div style="background-color: #EFEFEF; border-radius: 3px; margin: 0px; padding: 8px; text-align: center;">
  8. <a href="{{ board_address }}{% url 'activate' username=user.username_slug user=user.id token=user.token %}" style="color: #3465a4; font-size: 150%;">{% trans %}Activate my account{% endtrans %}!</a>
  9. </div>
  10. {% endblock %}