10 lines
354 B
HTML
10 lines
354 B
HTML
{% extends "registration/registration_base.html" %}
|
|
{% load i18n %}{% load bootstrap %}
|
|
{% block title %}Activation complete{% endblock %}
|
|
{% block content %}
|
|
<h1>Thanks, activation complete!</h1>
|
|
<p>You may now <a href="{% url 'django.contrib.auth.views.login' %}">login</a> using the username and password you set at registration.</p>
|
|
{% endblock %}
|
|
|
|
|