Files
old-riskletpy/backend/core/templates/thankyou.html
2025-02-13 16:38:29 +01:00

16 lines
397 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="container">
<div class="row">
<div class="col">
<h1 class="pt-4 mt-5 mb-4">Thank you.</h1>
We will send the document to {{ email }} when it is ready.
</div>
</div>
</div>
{% endblock content %}
{% block bottom %}
<script src="/static/js/formHandling.js"></script>
{% endblock bottom %}