regluit/frontend/templates/registration/activate.html

18 lines
654 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 %}{% if account %}Activation complete{% else %}Activation problem{% endif %}{% endblock %}
{% block doccontent %}
{% if not user.is_authenticated %}
{% if account %}
2015-04-28 03:24:02 +00:00
Thanks {{ account }}, activation complete! You may now <a href='{% url 'superlogin' %}'>sign in</a> using the username and password you set at registration.
{% else %}
Oops &ndash; it seems that your activation key is invalid. Please check the url again.
{% endif %}
{% else %}
<div>
2015-04-28 03:24:02 +00:00
You are logged in as <a href="{% url 'supporter' request.user %}">{{ request.user.username }}</a>.
</div>
{% endif %}
{% endblock %}