aboutsummaryrefslogtreecommitdiffstats
path: root/templates/django_registration/activate.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/django_registration/activate.html')
-rw-r--r--templates/django_registration/activate.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/django_registration/activate.html b/templates/django_registration/activate.html
new file mode 100644
index 0000000..39c2bac
--- /dev/null
+++ b/templates/django_registration/activate.html
@@ -0,0 +1,18 @@
+{% extends "base.html" %}
+{% load i18n %}
+
+{% block content %}
+
+{% if account %}
+
+<p>{% trans "Account successfully activated" %}</p>
+
+<p><a href="{% url "login" %}">{% trans "Log in" %}</a></p>
+
+{% else %}
+
+<p>{% trans "Account activation failed" %}</p>
+
+{% endif %}
+
+{% endblock %}