mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
16 lines
555 B
HTML
16 lines
555 B
HTML
{% extends "registration/registration_base.html" %}
|
|
|
|
{% block title %}{% if account %}Activation complete{% else %}Activation problem{% endif %}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if account %}
|
|
<div class="page-header">
|
|
<h1>Account Activation</h1>
|
|
</div>
|
|
<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 – it seems that your activation key is invalid. Please check the url again.</p>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|