Rearrange source to src dir.
[redakcja.git] / src / redakcja / templates / registration / login.html
diff --git a/src/redakcja/templates/registration/login.html b/src/redakcja/templates/registration/login.html
new file mode 100644 (file)
index 0000000..adbef3c
--- /dev/null
@@ -0,0 +1,17 @@
+{% extends "catalogue/base.html" %}
+
+{% block titleextra %}Logowanie{% endblock %}
+{% block subtitle %} - Logowanie {% endblock subtitle %}
+
+{% block content %}
+
+<div class="isection">
+<form method="POST" action="{% url 'login' %}">
+{% csrf_token %}
+{{ form.as_p }}
+<p><input type="submit" value="Login" /></p>
+<input type="hidden" name="next" value="{{ next|urlencode }}" />
+</form>
+</div>
+
+{% endblock content %}