ResortApp/templates/book_success.html
Argyrios Deligiannidis e84cc555a2 alion
2022-06-26 23:19:01 +03:00

27 lines
867 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% load static %}
{% load i18n %}
{% include "00_head.html" %}
<body>
<div class="site-wrap">
{% include "01_menu.html" %}
<div class="site-blocks-cover overlay" style="background-image: url({% static 'images/hero_1.jpg' %});" data-aos="fade" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="col-md-7 text-center" data-aos="fade">
<h1 class="mb-4">{% trans "Η αίτηση σας καταχωρήθηκε. Θα επικοινωνήσουμε άμεσα μαζί σας!" %}</h1>
<h2 class="mb-md-5 text-white"><a class="text-white" href="/">{% trans "< Αρχική Σελίδα >" %}</a></h2>
</div>
</div>
</div>
</div>
{% include "99_footer.html" %}
</body>
</html>