Add footer to auth templates

This commit is contained in:
Raphael Michel
2014-09-11 12:23:10 +02:00
parent cc6d624f57
commit 8ae7027ccb
2 changed files with 17 additions and 2 deletions

View File

@@ -4,6 +4,12 @@ body {
background: #eee;
}
footer {
text-align: center;
padding: 10px 0;
font-size: 11px;
}
.form-signin {
.well;

View File

@@ -1,4 +1,5 @@
{% load compress %}
{% load i18n %}
{% load staticfiles %}
<!DOCTYPE html>
<html>
@@ -10,7 +11,15 @@
</head>
<body>
<div class="container">
{% block content %}
{% endblock %}
{% block content %}
{% endblock %}
<footer>
{% with "href='http://tixl.de'" as a_attr %}
{% blocktrans trimmed %}
powered by <a {{ a_attr }}>tixl</a>
{% endblocktrans %}
{% endwith %}
</footer>
</div>
</body>
</html>