blob: 552fa04e68a4d5a29d8fc48ac42d784262623766 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends "base.html" %}
{% block title %}
registration_complete.html | {{ block.super }}
{% endblock %}
{% block header %}
<h1>registration_complete.html</h1>
{% endblock %}
{% block content %}
Thank you for signing up. An email with the activation code has been sent to your inbox.
{% endblock %}
|