From 4ae1b10959a55b4e1bfb2f292fb0c54a91c80ae5 Mon Sep 17 00:00:00 2001
From: Dominik George <dominik.george@teckids.org>
Date: Sun, 1 Sep 2019 22:20:51 +0200
Subject: [PATCH] Fix up contact form template. Advances #44.

---
 .../contact_form/support/contact_form.html          | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/biscuit/core/templates/contact_form/support/contact_form.html b/biscuit/core/templates/contact_form/support/contact_form.html
index 73e2dfbea..0ffefaa79 100644
--- a/biscuit/core/templates/contact_form/support/contact_form.html
+++ b/biscuit/core/templates/contact_form/support/contact_form.html
@@ -5,12 +5,11 @@
 {% block page_title %}BiscuIT SIS support{% endblock %}
 
 {% block content %}
-{% blocktrans %}<h2>Get support</h2>{% endblocktrans %}
-
-<form method="post">
- {% csrf_token %}
- {% bootstrap_form form %}
- <input type="submit" value="Sent" />
-</form>
+ <h1>{% blocktrans %}Get support{% endblocktrans %}</h1>
 
+ <form method="post">
+  {% csrf_token %}
+  {% bootstrap_form form %}
+  <input type="submit" value="Send" />
+ </form>
 {% endblock %}
-- 
GitLab