27 lines
730 B
HTML
27 lines
730 B
HTML
{% extends 'core/base.html' %}
|
|
{% load currency_filters %}
|
|
{% load widget_tweaks %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<h1 class="font-bold rounded-xl border-2 border-gray-200 bg-slate-100 mb-3 ml-3 mr-3 p-4 text-lg">Thank You.</h1>
|
|
<section class="rounded-xl border-2 border-gray-200 bg-slate-100 mb-3 ml-3 mr-3 p-4">
|
|
<p>One of our staff will contact you by email as soon as possible.</p>
|
|
|
|
<p>In the meantime you can: </p>
|
|
<br>
|
|
<div>
|
|
<a class="btn btn-green mr-1" href="{% url 'how_it_works' %}" class="text-blue-500">
|
|
Learn how our process works
|
|
</a>
|
|
or <a href="{% url 'home' %}" class="text-blue-500">return to the home page</a>
|
|
|
|
</section>
|
|
|
|
|
|
</article>
|
|
|
|
|
|
|
|
{% endblock %}
|