10 lines
313 B
HTML
10 lines
313 B
HTML
{% extends "registration/registration_base.html" %}
|
|
{% load i18n %}
|
|
{% block title %}Activation complete{% endblock %}
|
|
{% block content %}
|
|
<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>
|
|
{% endblock %}
|
|
|
|
|