This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/users/report_sent.html

14 lines
300 B
HTML

{% 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 %}