2023-11-29 12:24:09 +03:00
|
|
|
<?php extend('layouts/message_layout'); ?>
|
2021-11-15 11:49:08 +03:00
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
<?php section('content'); ?>
|
2021-11-15 11:49:08 +03:00
|
|
|
|
2021-11-12 18:33:01 +03:00
|
|
|
<div>
|
2022-01-24 14:58:48 +03:00
|
|
|
<img id="success-icon" class="mt-0 mb-5" src="<?= base_url('assets/img/success.png') ?>" alt="success"/>
|
2021-11-12 18:33:01 +03:00
|
|
|
</div>
|
|
|
|
|
2022-01-24 14:58:48 +03:00
|
|
|
<div class="mb-5">
|
|
|
|
<h4 class="mb-5"><?= lang('appointment_registered') ?></h4>
|
2021-11-12 18:33:01 +03:00
|
|
|
|
|
|
|
<p>
|
|
|
|
<?= lang('appointment_details_was_sent_to_you') ?>
|
|
|
|
</p>
|
|
|
|
|
2022-01-24 14:58:48 +03:00
|
|
|
<p class="mb-5 text-muted">
|
|
|
|
<small>
|
2021-11-12 18:33:01 +03:00
|
|
|
<?= lang('check_spam_folder') ?>
|
2022-01-24 14:58:48 +03:00
|
|
|
</small>
|
2021-11-12 18:33:01 +03:00
|
|
|
</p>
|
|
|
|
|
2022-01-24 14:58:48 +03:00
|
|
|
<a href="<?= site_url() ?>" class="btn btn-primary btn-large">
|
|
|
|
<i class="fas fa-calendar-alt me-2"></i>
|
2021-11-12 18:33:01 +03:00
|
|
|
<?= lang('go_to_booking_page') ?>
|
|
|
|
</a>
|
|
|
|
|
2022-03-28 09:18:00 +03:00
|
|
|
<a href="<?= vars('add_to_google_url') ?>" id="add-to-google-calendar" class="btn btn-primary" target="_blank">
|
|
|
|
<i class="fas fa-plus me-2"></i>
|
|
|
|
<?= lang('add_to_google_calendar') ?>
|
|
|
|
</a>
|
2021-11-12 18:33:01 +03:00
|
|
|
</div>
|
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
<?php end_section('content'); ?>
|
2022-05-26 16:32:21 +03:00
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
<?php section('scripts'); ?>
|
2022-05-26 16:32:21 +03:00
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
<?php component('google_analytics_script', ['google_analytics_code' => vars('google_analytics_code')]); ?>
|
2024-05-11 20:02:15 +03:00
|
|
|
<?php component('matomo_analytics_script', [
|
|
|
|
'matomo_analytics_url' => vars('matomo_analytics_url'),
|
|
|
|
'matomo_analytics_site_id' => vars('matomo_analytics_site_id'),
|
|
|
|
]); ?>
|
2022-05-26 16:32:21 +03:00
|
|
|
|
2023-11-29 12:24:09 +03:00
|
|
|
<?php end_section('scripts'); ?>
|