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.html29
1 files changed, 12 insertions, 17 deletions
diff --git a/templates/contact/form.html b/templates/contact/form.html
index 7ada5e0..27b68f0 100644
--- a/templates/contact/form.html
+++ b/templates/contact/form.html
@@ -1,17 +1,12 @@
1<!DOCTYPE html> 1{% extends "base.html" %}
2<html> 2
3 <head> 3{% block title %}Contact Us{% endblock %}
4 <meta charset="utf-8"> 4
5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 5{% block content %}
6 <title>Contact Us</title> 6<h1>Contact Us</h1>
7 <meta name="viewport" content="width=device-width"> 7<form action="{% url 'contact:thanks' %}" method="post">
8 </head> 8 {% csrf_token %}
9 <body> 9 {{ form.as_p }}
10 <h1>Contact Us</h1> 10 <button type="submit">Contact Us</button>
11 <form action="{% url 'contact:thanks' %}" method="post"> 11</form>
12 {% csrf_token %} 12{% endblock %}
13 {{ form.as_p }}
14 <button type="submit">Contact Us</button>
15 </form>
16 </body>
17</html>