15 lines
646 B
HTML
Raw Normal View History

2013-09-28 12:43:57 +02:00
{% extends "registration/registration_base.html" %}
2014-05-23 17:22:32 +02:00
{% load i18n %}{% load bootstrap %}
2013-09-28 12:43:57 +02:00
{% url 'auth_login' as auth_login_url %}
{% block title %}{% if account %}{% trans "Activation complete" %}{% else %}{% trans "Activation problem" %}{% endif %}{% endblock %}
{% block content %}
{% if account %}
{% blocktrans %}
Thanks {{ account }}, activation complete!
You may now <a href='{{ auth_login_url }}'>login</a> using the username and password you set at registration.
{% endblocktrans %}
{% else %}
2013-09-29 15:38:52 +02:00
{% blocktrans %}Oops -- it seems that your activation key is invalid. Please check the url again.{% endblocktrans %}
2013-09-28 12:43:57 +02:00
{% endif %}
{% endblock %}