17 lines
440 B
HTML
17 lines
440 B
HTML
{% extends "registration/registration_base.html" %}
|
|
{% block title %}Activation complete{% endblock %}
|
|
{% block doccontent %}
|
|
<div>
|
|
<p>Thanks, your activation is complete! You may now sign in using the username and password you set at registration:</p>
|
|
{% with 'welcome' as next %}
|
|
{% include "login_form.html" %}
|
|
{% endwith %}
|
|
</div>
|
|
<br />
|
|
<div>
|
|
<a href="{% url auth_password_reset %}">Forgot</a> your password?
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|