summaryrefslogtreecommitdiffstats
path: root/templates/patchwork/mail-form.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/patchwork/mail-form.html')
-rw-r--r--templates/patchwork/mail-form.html38
1 files changed, 0 insertions, 38 deletions
diff --git a/templates/patchwork/mail-form.html b/templates/patchwork/mail-form.html
deleted file mode 100644
index d71b2fb..0000000
--- a/templates/patchwork/mail-form.html
+++ /dev/null
@@ -1,38 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}mail settings{% endblock %}
-{% block heading %}mail settings{% endblock %}
-
-{% block body %}
-
-<p>You can configure patchwork to send you mail on certain events,
-or block automated mail altogether. Enter your email address to
-view or change your email settings.</p>
-
-<form method="post">
-{% csrf_token %}
-<table class="form registerform">
-{% if form.errors %}
- <tr>
- <td colspan="2" class="error">
- There was an error accessing your mail settings:
- </td>
- </tr>
-{% endif %}
- <tr>
- <th>{{ form.email.label_tag }}</th>
- <td>
- {{form.email}}
- {{form.email.errors}}
- </td>
- </tr>
- <tr>
- <td colspan="2" class="submitrow">
- <input type="submit" value="Access mail settings"/>
- </td>
- </tr>
-</table>
-</form>
-
-
-{% endblock %}