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
18 lines
511 B
{% extends "index.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block Headline %}Account activation{% endblock %}
|
|
|
|
{% block Content %}
|
|
{% if account %}
|
|
<p>{% with account.username as username %}
|
|
Thank you for registering!<br />
|
|
From now on, you can login with your username ({{ username }}).
|
|
{% endwith %}
|
|
</p>
|
|
{% else %}
|
|
<p>Either the link was invalid, or you didn't activate your account within {{ expiration_days }} days after the registration. Please register again.</p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|