user_html.html 1.0 KB

1234567891011121314
  1. {% extends "_email/users/activation/none_html.html" %}
  2. {% load i18n %}
  3. {% load url from future %}
  4. {% block content %}
  5. {{ super() }}
  6. <p {{ style_p|safe }}>{% 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. <p {{ style_p|safe }}>{% trans %}To activate your account, click the link below:{% endtrans %}</p>
  8. <a href="{{ board_address }}{% url 'activate' username=user.username_slug, user=user.id, token=user.token %}" {{ style_button|safe }}>{% trans %}Activate my account!{% 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 'activate' username=user.username_slug, user=user.id, token=user.token %}" {{ style_link|safe }}>{{ board_address }}{% url 'activate' username=user.username_slug, user=user.id, token=user.token %}</a>
  11. {% endblock %}