summaryrefslogtreecommitdiff
path: root/gstudio/templates/registration/activate.html
diff options
context:
space:
mode:
Diffstat (limited to 'gstudio/templates/registration/activate.html')
-rw-r--r--gstudio/templates/registration/activate.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/gstudio/templates/registration/activate.html b/gstudio/templates/registration/activate.html
new file mode 100644
index 0000000..e85121e
--- /dev/null
+++ b/gstudio/templates/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 auth_login %}">{% trans "Log in" %}</a></p>
+
+{% else %}
+
+<p>{% trans "Account activation failed" %}</p>
+
+{% endif %}
+
+{% endblock %}