X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/73e3cc6c4b80f1afbfc78fc7ccd6f6cfc90b719c..180fe27d469608a6f3cdd5249311f93a5bc437b5:/wolnelektury/templates/registration/login.html?ds=inline

diff --git a/wolnelektury/templates/registration/login.html b/wolnelektury/templates/registration/login.html
index b88d4e19d..5fbe3af42 100755
--- a/wolnelektury/templates/registration/login.html
+++ b/wolnelektury/templates/registration/login.html
@@ -1,5 +1,19 @@
-<form method="POST" action="">
+{% extends "simple_base.html" %}
+{% load i18n %}
+
+{% block "title" %}{% trans "Login to Wolne Lektury" %}{% endblock %}
+
+{% block "body" %}
+    <h1>{% trans "Login to Wolne Lektury" %}</h1>
+
+    <form method="POST">
     {% csrf_token %}
-    {{ form }}
-<input type="submit" />
-</form>
+    <table>
+        {{ form.as_table }}
+        <tr><td></td><td>
+            <input type="submit" value='{% trans "Login" %}' />
+        </td></tr>
+    </table>
+    </form>
+
+{% endblock %}