activate_account.html 352 B

12345678910
  1. {% set link = url_for('auth.activate_account', token=token, _external=True) %}
  2. <p>{% trans %}Dear {{ username }},{% endtrans %}</p>
  3. <p>{% trans %}Click the link below to activate your account:{% endtrans %}</p>
  4. <p><a href="{{ link }}">{{ link }}</a></p>
  5. <p>{% trans %}Sincerely,{% endtrans %}</p>
  6. <p>{% trans %}The Administration{% endtrans %}</p>