X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/73e3cc6c4b80f1afbfc78fc7ccd6f6cfc90b719c..4fea8503c1f680b7e6942dfae6f0e7a8589e47ea:/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 %}