blob: 5542ccfecd52651fcf86dc986f0de5a20c1058e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<div class="post">
<div class="title"><h2>{% trans "Register" %}</h2></div>
<div id="search">
<style type="text/css">
ul.errorlist {
margin: 0;
padding: 0;
}
.errorlist li {
color: red;
display: block;
font-size: 10px;
margin: 0 1 3px;
padding: 0px 45px;
}
</style>
<table>
Your account has been activated. You have also been automatically
logged into your account. Click on the item "Registration" in the
left panel to fill in further details.
</table>
<script type="text/javascript">
document.getElementById('id_username').focus();
</script>
</div>
{% endblock %}
|