X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/60b06883b6d5a336ef47c01103ec1ce25aafae69..e34cbdf5e06f7766f748440a875ddaed6b90461b:/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 %}