summaryrefslogtreecommitdiffstats
path: root/templates/users/report_sent.html
blob: 4e8c78c4e1b6d6cad28c11b587e8338ef17a5484 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}

{% block title %}Report Sent{% endblock %}

{% block content %}
    <form action="." method="POST">
        {% csrf_token %}
        <fieldset>
            <legend>Report</legend>
            <p>Your report has been sent.</p>
        </fieldset>
    </form>
{% endblock %}