{% extends 'base.html.twig' %}


{% block menu %} {% endblock %}

{% block body %}

    <header class="masthead">
        <div class="container h-100">
            <div class="row h-100 align-items-center justify-content-center text-center">
                <div class="col-lg-10 align-self-end">
                    <h6 class="text-uppercase text-white font-weight-bold">Thank you!</h1>
                    <hr class="divider my-4">
                </div>
                <div class="col-lg-12 align-self-baseline">
                    <p class="text-white-75 font-weight-light mb-5">See you next time.</p>
                </div>
                {% include 'footer-no-colour.html.twig' %}
            </div>
        </div>
    </header>

    <script type="text/javascript">
        setTimeout(function(){
            window.location.reload(1);
        }, 5000);
    </script>
{% endblock %}
