Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
511 B

  1. {% extends "index.html" %}
  2. {% load i18n %}
  3. {% block Headline %}Account activation{% endblock %}
  4. {% block Content %}
  5. {% if account %}
  6. <p>{% with account.username as username %}
  7. Thank you for registering!<br />
  8. From now on, you can login with your username ({{ username }}).
  9. {% endwith %}
  10. </p>
  11. {% else %}
  12. <p>Either the link was invalid, or you didn't activate your account within {{ expiration_days }} days after the registration. Please register again.</p>
  13. {% endif %}
  14. {% endblock %}