X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/10510d28f980e9a61bdd2b5471e78eec872952ba..8a8f5dd4b7f9971510d624d61455baf0bde4221c:/wolnelektury/templates/registration/login.html 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 %}