diff options
Diffstat (limited to 'ishtar_common')
-rw-r--r-- | ishtar_common/templates/registration/activation_complete.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ishtar_common/templates/registration/activation_complete.html b/ishtar_common/templates/registration/activation_complete.html new file mode 100644 index 000000000..b243d22f2 --- /dev/null +++ b/ishtar_common/templates/registration/activation_complete.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} +{% load url from future %} +{% load i18n %} + +{% block content %} +<div class='info'> +<p>{% trans "You may now login with your username and password." %}</p> +{% if not user.is_authenticated %} +<a href="{% url "auth_login" %}">{% trans "Login now" %}</a> +{% else %} +<a href="/">{% trans "Home" %}</a> +{% endif %} +</div> +{% endblock %} |