aboutsummaryrefslogtreecommitdiff
path: root/templates/contact/form.html
blob: 27b68f000071e4decec40adbebc25ad20ef34cca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "base.html" %}

{% block title %}Contact Us{% endblock %}

{% block content %}
<h1>Contact Us</h1>
<form action="{% url 'contact:thanks' %}" method="post">
    {% csrf_token %}
    {{ form.as_p }}
    <button type="submit">Contact Us</button>
</form>
{% endblock %}