{% extends "django_registration/registration_base.html" %} {% load i18n %} {% block title %}{% trans "Activation complete" %}{% endblock %} {% block content %}
{% url 'login' as auth_login_url %} <h1 class="text-center">{% trans "Thanks, activation complete!" %}</h1>
<p class="text-center"> {% blocktrans %} You may now <a href='{{ auth_login_url }}'>login</a> using the username and password you set at registration. {% endblocktrans %} </p>
{% endblock %}