2015-04-28 03:24:02 +00:00
|
|
|
{% extends 'registration/registration_base.html' %}
|
2016-05-11 14:41:50 +00:00
|
|
|
|
2011-09-04 04:21:51 +00:00
|
|
|
{% block title %}Activation complete{% endblock %}
|
2011-11-19 00:50:47 +00:00
|
|
|
{% block doccontent %}
|
2012-05-26 22:36:10 +00:00
|
|
|
{% if not user.is_authenticated %}
|
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>
|
2017-09-22 20:54:16 +00:00
|
|
|
<a href="{% url 'libraryauth_password_reset' %}">Forgot</a> your password?
|
2011-09-04 05:29:18 +00:00
|
|
|
</div>
|
2012-05-26 22:36:10 +00:00
|
|
|
{% else %}
|
|
|
|
<div>
|
2015-04-28 03:24:02 +00:00
|
|
|
You are already logged in as <a href="{% url 'supporter' user.username %}">{{ user.username }}</a>.
|
2012-05-26 22:36:10 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2011-09-04 04:21:51 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|