summaryrefslogtreecommitdiffstats
path: root/templates/patchwork/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/patchwork/login.html')
-rw-r--r--templates/patchwork/login.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/templates/patchwork/login.html b/templates/patchwork/login.html
new file mode 100644
index 0000000..2dfc2a7
--- /dev/null
+++ b/templates/patchwork/login.html
@@ -0,0 +1,27 @@
+{% extends "base.html" %}
+
+{% block title %}Login{% endblock %}
+{% block heading %}Login{% endblock %}
+
+
+{% block body %}
+<form method="post">
+{% csrf_token %}
+<table class="form loginform">
+ <tr>
+ <th colspan="2" class="headerrow">login</th>
+ </tr>
+ {% if error %}
+ <tr>
+ <td colspan="2">{{ error }}</td>
+ </tr>
+ {% endif %}
+ {{ form }}
+ <tr>
+ <td colspan="2" class="submitrow">
+ <input type="submit" value="Login"/>
+ </td>
+ </tr>
+</table>
+</form>
+{% endblock %}