verified_email_required.html 797 B

1234567891011121314151617181920212223
  1. {% extends "account/base.html" %}
  2. {% load i18n %}
  3. {% block head_title %}{% trans "Verify Your E-mail Address" %}{% endblock %}
  4. {% block content %}
  5. <h1>{% trans "Verify Your E-mail Address" %}</h1>
  6. {% url 'account_email' as email_url %}
  7. <p>{% blocktrans %}This part of the site requires us to verify that
  8. you are who you claim to be. For this purpose, we require that you
  9. verify ownership of your e-mail address. {% endblocktrans %}</p>
  10. <p>{% blocktrans %}We have sent an e-mail to you for
  11. verification. Please click on the link inside this e-mail. Please
  12. contact us if you do not receive it within a few minutes.{% endblocktrans %}</p>
  13. <p>{% blocktrans %}<strong>Note:</strong> you can still <a href="{{ email_url }}">change your e-mail address</a>.{% endblocktrans %}</p>
  14. {% endblock %}