github.com/blystad/deis@v0.11.0/controller/web/templates/account/verified_email_required.html (about)

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