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 %}
|
2013-09-29 16:26:31 +02:00
|
|
|
{% block title %}Activation complete{% endblock %}
|
2013-09-28 12:43:57 +02:00
|
|
|
{% block content %}
|
2013-09-29 16:26:31 +02:00
|
|
|
<h1>Thanks, activation complete!</h1>
|
2014-01-26 00:51:11 +01:00
|
|
|
<p>You may now <a href="{% url 'django.contrib.auth.views.login' %}">login</a> using the username and password you set at registration.</p>
|
2013-09-28 12:43:57 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|