aboutsummaryrefslogtreecommitdiffstats
path: root/templates/registration/activate.html
blob: 6e248906ad742607bd7a992ea81fe8a901a72e3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 %}