2013-09-28 12:43:57 +02:00
|
|
|
{% extends "registration/registration_base.html" %}
|
2014-05-23 17:22:32 +02:00
|
|
|
{% load i18n %}{% load bootstrap %}
|
2014-10-28 17:10:53 +01:00
|
|
|
{% block title %}{% trans 'Activation complete' %}{% endblock %}
|
|
|
|
|
2013-09-28 12:43:57 +02:00
|
|
|
{% block content %}
|
2014-10-28 17:10:53 +01:00
|
|
|
<h2>{% trans 'Thanks, activation complete!' %}</h2>
|
|
|
|
<p>{% trans 'You may now login using the username and password you set at registration.' %}</p>
|
|
|
|
<p><a href="{{ login_url }}"><button class="btn btn-primary" type="button">{% trans "Log in" %}</button></a></p>
|
2013-09-28 12:43:57 +02:00
|
|
|
{% endblock %}
|