]> git.ozlabs.org Git - patchwork/blobdiff - templates/patchwork/login.html
Move to a more recent django project structure
[patchwork] / templates / patchwork / login.html
diff --git a/templates/patchwork/login.html b/templates/patchwork/login.html
deleted file mode 100644 (file)
index 2dfc2a7..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-{% 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 %}