diff --git a/hub/services/templates/services/thank_you.html b/hub/services/templates/services/thank_you.html index d0d9282..5614528 100644 --- a/hub/services/templates/services/thank_you.html +++ b/hub/services/templates/services/thank_you.html @@ -1,31 +1,81 @@ {% extends 'services/base.html' %} {% block content %} -
-
-
-
-

Thank You!

- -
-

Thank you for your interest in {{ service.name }}!

-

We have received your inquiry and our team will contact you shortly.

+
+
+
+
+
+
+
+ + + + + + + + + + + + + +
+
+

Inquiry Received Successfully!

+
+

Thank you for your interest in {{ service.name }}! We have received your inquiry and our team will contact you shortly. A confirmation email will be sent to your provided email address.

+
+
+ +
- -
-

A confirmation email will be sent to your provided email address.

+
+
+
+
+ {% if service.image %} + {{ service.name }} + {% endif %} +
+
+

{{ service.name }}

+

{{ service.category }}

+
- -
- - Back to Service Details - - - Browse More Services - + {% if service.description %} +
+
+

{{ service.description|safe }}

+
+ {% endif %} + {% if service.pricing_plans %} +
+ {% for plan in service.pricing_plans %} +
+

{{ plan.name }}

+
+
    + {% for price in plan.prices %} +
  • {{ price.amount }} {{ price.currency }} per {{ price.interval }}
  • + {% endfor %} +
+
+
+ {% endfor %} +
+ {% endif %}
-
+
{% endblock %} \ No newline at end of file