2015-10-07 23:51:12 +03:00
|
|
|
<!DOCTYPE html>
|
2020-04-22 22:48:56 +03:00
|
|
|
<html lang="en">
|
2015-10-07 23:51:12 +03:00
|
|
|
<head>
|
2017-09-05 15:58:34 +03:00
|
|
|
<meta charset="utf-8">
|
2015-10-07 23:51:12 +03:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="theme-color" content="#35A768">
|
2017-09-14 16:18:20 +03:00
|
|
|
<title><?= lang('appointment_registered') . ' - ' . $company_name ?></title>
|
2015-10-07 23:51:12 +03:00
|
|
|
|
2017-11-14 16:01:49 +03:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/ext/bootstrap/css/bootstrap.min.css') ?>">
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/css/frontend.css') ?>">
|
2020-08-15 18:55:35 +03:00
|
|
|
<script src="<?= asset_url('assets/ext/fontawesome/js/all.min.js') ?>"></script>
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2017-11-14 16:01:49 +03:00
|
|
|
<link rel="icon" type="image/x-icon" href="<?= asset_url('assets/img/favicon.ico') ?>">
|
|
|
|
<link rel="icon" sizes="192x192" href="<?= asset_url('assets/img/logo.png') ?>">
|
2015-10-07 23:51:12 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="main" class="container">
|
2020-08-31 17:09:13 +03:00
|
|
|
<div class="row wrapper">
|
|
|
|
<div id="success-frame" class="col-12 my-auto frame-container">
|
|
|
|
<div>
|
2020-05-05 20:35:33 +03:00
|
|
|
<img id="success-icon" class="mt-0 mb-2" src="<?= base_url('assets/img/success.png') ?>" />
|
2015-10-07 23:51:12 +03:00
|
|
|
</div>
|
2020-08-31 17:09:13 +03:00
|
|
|
|
|
|
|
<div>
|
2020-08-31 13:23:10 +03:00
|
|
|
<h3><?= lang('appointment_registered') ?></h3>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<?= lang('appointment_details_was_sent_to_you') ?>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<strong>
|
|
|
|
<?= lang('check_spam_folder') ?>
|
|
|
|
</strong>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<a href="<?= site_url() ?>" class="btn btn-success btn-large">
|
|
|
|
<i class="far fa-calendar-alt"></i>
|
|
|
|
<?= lang('go_to_booking_page') ?>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<?php if(config('google_sync_feature')): ?>
|
|
|
|
<button id="add-to-google-calendar" class="btn btn-primary">
|
|
|
|
<i class="fas fa-plus"></i>
|
|
|
|
<?= lang('add_to_google_calendar') ?>
|
|
|
|
</button>
|
|
|
|
<?php endif ?>
|
2015-10-07 23:51:12 +03:00
|
|
|
|
2020-08-31 13:23:10 +03:00
|
|
|
<?php if (isset($exceptions)): ?>
|
2020-08-31 17:09:13 +03:00
|
|
|
<div class="m-2">
|
2020-08-31 13:23:10 +03:00
|
|
|
<h4><?= lang('unexpected_issues') ?></h4>
|
2015-10-07 23:51:12 +03:00
|
|
|
|
2020-08-31 13:23:10 +03:00
|
|
|
<?php foreach($exceptions as $exception): ?>
|
|
|
|
<?= exceptionToHtml($exception) ?>
|
|
|
|
<?php endforeach ?>
|
|
|
|
</div>
|
|
|
|
<?php endif ?>
|
2015-10-07 23:51:12 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2017-09-14 16:18:20 +03:00
|
|
|
<script src="<?= base_url('assets/ext/jquery/jquery.min.js') ?>"></script>
|
2020-05-05 20:35:33 +03:00
|
|
|
<script src="<?= base_url('assets/ext/bootstrap/js/bootstrap.bundle.min.js') ?>"></script>
|
2020-03-27 12:29:38 +03:00
|
|
|
<script src="<?= base_url('assets/ext/datejs/date.min.js') ?>"></script>
|
2017-09-05 15:58:34 +03:00
|
|
|
<script src="https://apis.google.com/js/client.js"></script>
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2017-09-05 15:58:34 +03:00
|
|
|
<script>
|
2015-10-07 23:51:12 +03:00
|
|
|
var GlobalVariables = {
|
2017-09-14 16:18:20 +03:00
|
|
|
'csrfToken' : <?= json_encode($this->security->get_csrf_hash()) ?>,
|
|
|
|
'appointmentData' : <?= json_encode($appointment_data) ?>,
|
|
|
|
'providerData' : <?= json_encode($provider_data) ?>,
|
|
|
|
'serviceData' : <?= json_encode($service_data) ?>,
|
|
|
|
'companyName' : <?= json_encode($company_name) ?>,
|
2020-04-22 22:48:56 +03:00
|
|
|
'googleApiKey' : <?= json_encode(config('google_api_key')) ?>,
|
|
|
|
'googleClientId' : <?= json_encode(config('google_client_id')) ?>,
|
2015-10-07 23:51:12 +03:00
|
|
|
'googleApiScope' : 'https://www.googleapis.com/auth/calendar'
|
|
|
|
};
|
|
|
|
|
2017-09-14 16:18:20 +03:00
|
|
|
var EALang = <?= json_encode($this->lang->language) ?>;
|
2015-10-07 23:51:12 +03:00
|
|
|
</script>
|
|
|
|
|
2017-11-14 16:01:49 +03:00
|
|
|
<script src="<?= asset_url('assets/js/frontend_book_success.js') ?>"></script>
|
2020-05-07 19:56:12 +03:00
|
|
|
<script src="<?= asset_url('assets/js/polyfill.js') ?>"></script>
|
2017-11-14 16:01:49 +03:00
|
|
|
<script src="<?= asset_url('assets/js/general_functions.js') ?>"></script>
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2017-09-14 16:18:20 +03:00
|
|
|
<?php google_analytics_script() ?>
|
2015-10-07 23:51:12 +03:00
|
|
|
</body>
|
|
|
|
</html>
|