aboutsummaryrefslogtreecommitdiff
path: root/templates/contact/thanks.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/contact/thanks.html')
-rw-r--r--templates/contact/thanks.html23
1 files changed, 9 insertions, 14 deletions
diff --git a/templates/contact/thanks.html b/templates/contact/thanks.html
index 67e8336..8e131f0 100644
--- a/templates/contact/thanks.html
+++ b/templates/contact/thanks.html
@@ -1,14 +1,9 @@
1<!DOCTYPE html> 1{% extends "base.html" %}
2<html> 2
3 <head> 3{% block title %}Thank You{% endblock %}
4 <meta charset="utf-8"> 4
5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 5{% block content %}
6 <title>Thank You</title> 6 <h1>Thanks for contacting us</h1>
7 <meta name="viewport" content="width=device-width"> 7 <p>We have sent the following message to the organizers. Thanks.</p>
8 </head> 8 <p>{{ form.message.value }}</p>
9 <body> 9{% endblock %}
10 <h1>Thanks for contacting us</h1>
11 <p>We have sent the following message to the organizers. Thanks.</p>
12 <p>{{ form.message.value }}</p>
13 </body>
14</html>