| author | rougeronj |
| Wed, 10 Dec 2014 11:34:54 +0100 | |
| changeset 384 | 83adb3fd0efd |
| parent 335 | 51225e522007 |
| permissions | -rw-r--r-- |
| 335 | 1 |
{% extends "base.html" %} |
|
384
83adb3fd0efd
Update login (and ajax login), and registration pages
rougeronj
parents:
335
diff
changeset
|
2 |
{% load static %} |
| 335 | 3 |
{% load i18n %} |
4 |
||
|
384
83adb3fd0efd
Update login (and ajax login), and registration pages
rougeronj
parents:
335
diff
changeset
|
5 |
{% block title %}{% trans "Registration - Activated" %}{% endblock %} |
|
83adb3fd0efd
Update login (and ajax login), and registration pages
rougeronj
parents:
335
diff
changeset
|
6 |
|
|
83adb3fd0efd
Update login (and ajax login), and registration pages
rougeronj
parents:
335
diff
changeset
|
7 |
{% block css_import %} |
|
83adb3fd0efd
Update login (and ajax login), and registration pages
rougeronj
parents:
335
diff
changeset
|
8 |
{{block.super}} |
|
83adb3fd0efd
Update login (and ajax login), and registration pages
rougeronj
parents:
335
diff
changeset
|
9 |
<link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/login.css' %}" /> |
|
83adb3fd0efd
Update login (and ajax login), and registration pages
rougeronj
parents:
335
diff
changeset
|
10 |
{% endblock %} |
|
83adb3fd0efd
Update login (and ajax login), and registration pages
rougeronj
parents:
335
diff
changeset
|
11 |
|
| 335 | 12 |
{% block main_content %} |
13 |
<div class="register"> |
|
14 |
{% if account %} |
|
15 |
<p>{% trans "Account successfully activated" %}</p> |
|
16 |
<p><a href="{% url 'auth_login' %}">{% trans "Log in" %}</a></p> |
|
17 |
{% else %} |
|
18 |
<p>{% trans "Account activation failed" %}</p> |
|
19 |
{% endif %} |
|
20 |
</div> |
|
21 |
{% endblock %} |