Podstawowe logowanie do edytora.
[redakcja.git] / project / templates / registration / login.html
diff --git a/project/templates/registration/login.html b/project/templates/registration/login.html
new file mode 100644 (file)
index 0000000..8bf8967
--- /dev/null
@@ -0,0 +1,15 @@
+{% extends "base.html" %}
+
+{% block subtitle %} - Logowanie {% endblock subtitle %}
+
+{% block maincontent %}
+
+<div class="isection">
+<form method="POST" action="{% url django.contrib.auth.views.login %}">
+{{ form.as_p }}
+<p><input type="submit" value="Login" /></p>
+<input type="hidden" name="next_page" value="{{ next_page }}" />
+</form>
+</div>
+
+{% endblock maincontent %}