regluit/frontend/templates/registration/activation_complete.html

24 lines
621 B
HTML
Raw Normal View History

2015-04-28 03:24:02 +00:00
{% extends 'registration/registration_base.html' %}
2016-05-11 14:41:50 +00:00
{% block title %}Activation complete{% endblock %}
{% block doccontent %}
{% if not user.is_authenticated %}
<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 'libraryauth_password_reset' %}">Forgot</a> your password?
</div>
{% 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>.
</div>
{% endif %}
{% endblock %}