16 lines
397 B
HTML
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 %}
|