2013-09-28 12:43:57 +02:00
|
|
|
{% extends "registration/registration_base.html" %}
|
|
|
|
{% load i18n %}
|
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>
|
|
|
|
<p>You may now <a href="{% url 'auth_login' %}">login</a> using the username and password you set at registration.</p>
|
2013-09-28 12:43:57 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|