10 lines
450 B
HTML
Raw Normal View History

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 %}
{% block title %}{% trans 'Activation complete' %}{% endblock %}
2013-09-28 12:43:57 +02:00
{% block content %}
<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 %}