Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django

14 lines
443 B

  1. {% extends "base.htm" %}
  2. {% load i18n %}
  3. {% block title %}Activate account{% endblock %}
  4. {% block content %}
  5. <h2>Activate your account</h2>
  6. <p>Thank you for registering.
  7. {% if verify %}
  8. In order to prohibit misuse, you need to activate your account before you can use it. We sent an EMail with further instructions to the address you specified, please follow the link in that email to activate your account.
  9. {% endif %}
  10. </p>
  11. {% endblock %}