2011-09-04 04:21:51 +00:00
|
|
|
{% extends "registration/registration_base.html" %}
|
|
|
|
{% block title %}Activation complete{% endblock %}
|
2011-11-19 00:50:47 +00:00
|
|
|
{% block doccontent %}
|
2012-01-13 21:24:34 +00:00
|
|
|
<div>
|
|
|
|
<p>Thanks, your activation is complete! You may now sign in using the username and password you set at registration:</p>
|
2012-02-01 17:38:41 +00:00
|
|
|
{% with 'welcome' as next %}
|
2011-09-29 03:26:08 +00:00
|
|
|
{% include "login_form.html" %}
|
2012-02-01 17:38:41 +00:00
|
|
|
{% endwith %}
|
2012-01-13 21:24:34 +00:00
|
|
|
</div>
|
|
|
|
<br />
|
|
|
|
<div>
|
|
|
|
<a href="{% url auth_password_reset %}">Forgot</a> your password?
|
2011-09-04 05:29:18 +00:00
|
|
|
</div>
|
2011-09-04 04:21:51 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|