2011-09-04 04:21:51 +00:00
|
|
|
{% extends "registration/registration_base.html" %}
|
|
|
|
{% block title %}Activation complete{% endblock %}
|
|
|
|
{% block content %}
|
2011-09-04 05:29:18 +00:00
|
|
|
<div id="registration">
|
2011-09-29 03:26:08 +00:00
|
|
|
Thanks, your activation is complete! You may now sign in using the username and password you set at registration:
|
|
|
|
|
|
|
|
|
|
|
|
{% include "login_form.html" %}
|
|
|
|
|
|
|
|
<a href="{% url auth_password_reset %}">Already forgot</a> your password?
|
2011-09-04 05:29:18 +00:00
|
|
|
</div>
|
2011-09-04 04:21:51 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|