Files
test-auth/app/templates/registration/activate.html
2011-03-15 12:02:34 +00:00

11 lines
490 B
HTML

{% extends "registration/registration_base.html" %}
{% block title %}{% if account %}Activation complete{% else %}Activation problem{% endif %}{% endblock %}
{% block content %}
{% if account %}
<p>Thanks {{ account }}, activation complete! You may now <a href='{% url auth_login %}'>login</a> using the username and password you set at registration.</p>
{% else %}
<p>Oops &ndash; it seems that your activation key is invalid. Please check the url again.</p>
{% endif %}
{% endblock %}