Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
13 lines
421 B
13 lines
421 B
{% extends "index.htm" %}
|
|
{% load i18n %}
|
|
|
|
{% block Headline %}Registration complete{% endblock %}
|
|
|
|
{% block Content %}
|
|
<p>Thank you for registering.
|
|
{% if verify %}
|
|
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.
|
|
{% endif %}
|
|
</p>
|
|
{% endblock %}
|
|
|