aboutsummaryrefslogtreecommitdiff
path: root/templates/contact/form.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/contact/form.html')
-rw-r--r--templates/contact/form.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/contact/form.html b/templates/contact/form.html
new file mode 100644
index 0000000..7ada5e0
--- /dev/null
+++ b/templates/contact/form.html
@@ -0,0 +1,17 @@
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6 <title>Contact Us</title>
7 <meta name="viewport" content="width=device-width">
8 </head>
9 <body>
10 <h1>Contact Us</h1>
11 <form action="{% url 'contact:thanks' %}" method="post">
12 {% csrf_token %}
13 {{ form.as_p }}
14 <button type="submit">Contact Us</button>
15 </form>
16 </body>
17</html>