aboutsummaryrefslogtreecommitdiff
path: root/templates/contact/form.html
blob: 7ada5e0430d21127827722b0f93e1a91d0ba2d0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <title>Contact Us</title>
        <meta name="viewport" content="width=device-width">
    </head>
    <body>
        <h1>Contact Us</h1>
        <form action="{% url 'contact:thanks' %}" method="post">
        {% csrf_token %}
        {{ form.as_p }}
        <button type="submit">Contact Us</button>
        </form>
    </body>
</html>