10 lines
452 B
HTML
10 lines
452 B
HTML
{% extends "registration/registration_base.html" %}
|
|
{% load i18n %}{% load bootstrap %}
|
|
{% block title %}{% trans 'Activation complete' %}{% endblock %}
|
|
|
|
{% 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="{% url "login" %}"><button class="btn btn-primary" type="button">{% trans "Log in" %}</button></a></p>
|
|
{% endblock %}
|