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.

20 lines
529 B

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