activation_resent.html 429 B

12345678
  1. {% extends "_message/base.html" %}
  2. {% load i18n %}
  3. {% block content %}
  4. <div class="alert-icon"><span><i class="icon-info-sign icon-white"></i></span></div>
  5. <p><strong>{% trans %}Check your inbox!{% endtrans %}</strong></p>
  6. <p>{% trans username=message.user.username, email=message.user.email %}{{ username }}, we have mailed new activation instructions to your email at {{ email }}.{% endtrans %}</p>
  7. {% endblock %}