2013-04-20 20:20:16 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2015-04-26 15:31:34 +03:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2015-04-09 22:50:16 +03:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="theme-color" content="#35A768">
|
2015-04-26 15:31:34 +03:00
|
|
|
<title><?php echo $this->lang->line('appointment_registered') . ' - ' . $company_name; ?></title>
|
2015-04-09 22:50:16 +03:00
|
|
|
|
2013-06-10 18:51:23 +03:00
|
|
|
|
2015-04-26 15:31:34 +03:00
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
// INCLUDE CSS FILES
|
|
|
|
// ------------------------------------------------------------ ?>
|
2015-04-13 21:33:59 +03:00
|
|
|
<link rel="stylesheet" type="text/css"
|
2015-05-28 00:15:43 +03:00
|
|
|
href="<?php echo $this->config->item('base_url'); ?>/assets/ext/bootstrap/css/bootstrap.min.css">
|
2015-04-26 15:31:34 +03:00
|
|
|
<link rel="stylesheet" type="text/css"
|
2015-05-28 00:15:43 +03:00
|
|
|
href="<?php echo $this->config->item('base_url'); ?>/assets/css/frontend.css">
|
2015-04-26 15:31:34 +03:00
|
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
// SET PAGE FAVICON
|
|
|
|
// ------------------------------------------------------------ ?>
|
2015-04-09 22:50:16 +03:00
|
|
|
<link rel="icon" type="image/x-icon"
|
2015-05-28 00:15:43 +03:00
|
|
|
href="<?php echo $this->config->item('base_url'); ?>/assets/img/favicon.ico">
|
2015-04-13 21:33:59 +03:00
|
|
|
|
2015-04-09 22:50:16 +03:00
|
|
|
<link rel="icon" sizes="192x192"
|
2015-05-28 00:15:43 +03:00
|
|
|
href="<?php echo $this->config->item('base_url'); ?>/assets/img/logo.png">
|
2015-04-26 15:44:25 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="main" class="container">
|
|
|
|
<div class="wrapper row">
|
|
|
|
<div id="success-frame" class="frame-container
|
|
|
|
col-xs-12
|
|
|
|
col-sm-offset-1 col-sm-10
|
|
|
|
col-md-offset-2 col-md-8
|
|
|
|
col-lg-offset-2 col-lg-8">
|
|
|
|
|
|
|
|
<div class="col-xs-12 col-sm-2">
|
2015-05-28 00:15:43 +03:00
|
|
|
<img id="success-icon" class="pull-right" src="<?php echo $this->config->item('base_url'); ?>/assets/img/success.png" />
|
2015-04-26 15:44:25 +03:00
|
|
|
</div>
|
|
|
|
<div class="col-xs-12 col-sm-10">
|
|
|
|
<?php
|
|
|
|
echo '<h3>' . $this->lang->line('appointment_registered') . '</h3>';
|
|
|
|
echo '<p>' . $this->lang->line('appointment_details_was_sent_to_you') . '</p>';
|
|
|
|
|
|
|
|
if ($this->config->item('ea_google_sync_feature')) {
|
|
|
|
echo '
|
|
|
|
<button id="add-to-google-calendar" class="btn btn-primary">
|
|
|
|
<i class="icon-plus icon-white"></i>
|
|
|
|
' . $this->lang->line('add_to_google_calendar') . '
|
|
|
|
</button>';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Display exceptions (if any).
|
|
|
|
if (isset($exceptions)) {
|
|
|
|
echo '<div class="col-xs-12" style="margin:10px">';
|
|
|
|
echo '<h4>Unexpected Errors</h4>';
|
|
|
|
foreach($exceptions as $exc) {
|
|
|
|
echo exceptionToHtml($exc);
|
|
|
|
}
|
|
|
|
echo '</div>';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
// INCLUDE JS FILES
|
|
|
|
// ------------------------------------------------------------ ?>
|
|
|
|
<script
|
|
|
|
type="text/javascript"
|
2015-07-08 00:25:37 +03:00
|
|
|
src="<?php echo $this->config->item('base_url'); ?>/assets/ext/jquery/jquery.min.js"></script>
|
2015-04-26 15:44:25 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
2015-05-28 00:15:43 +03:00
|
|
|
src="<?php echo $this->config->item('base_url'); ?>/assets/ext/bootstrap/js/bootstrap.min.js"></script>
|
2015-04-26 15:44:25 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
2015-05-28 00:15:43 +03:00
|
|
|
src="<?php echo $this->config->item('base_url'); ?>/assets/js/libs/date.js"></script>
|
2015-04-26 15:44:25 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
|
|
|
src="https://apis.google.com/js/client.js"></script>
|
|
|
|
|
2015-04-26 15:31:34 +03:00
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
// CUSTOM PAGE JS
|
|
|
|
// ------------------------------------------------------------ ?>
|
2013-06-10 18:51:23 +03:00
|
|
|
<script type="text/javascript">
|
|
|
|
var GlobalVariables = {
|
2015-05-28 00:47:19 +03:00
|
|
|
'csrfToken' : <?php echo json_encode($this->security->get_csrf_hash()); ?>,
|
2013-06-10 18:51:23 +03:00
|
|
|
'appointmentData' : <?php echo json_encode($appointment_data); ?>,
|
|
|
|
'providerData' : <?php echo json_encode($provider_data); ?>,
|
|
|
|
'serviceData' : <?php echo json_encode($service_data); ?>,
|
|
|
|
'companyName' : <?php echo '"' . $company_name . '"'; ?>,
|
2015-04-13 21:01:00 +03:00
|
|
|
'googleApiKey' : <?php echo '"' . Config::GOOGLE_API_KEY . '"'; ?>,
|
|
|
|
'googleClientId' : <?php echo '"' . Config::GOOGLE_CLIENT_ID . '"'; ?>,
|
2013-06-10 18:51:23 +03:00
|
|
|
'googleApiScope' : 'https://www.googleapis.com/auth/calendar'
|
|
|
|
};
|
|
|
|
|
2013-12-19 18:28:19 +02:00
|
|
|
var EALang = <?php echo json_encode($this->lang->language); ?>;
|
2013-06-10 18:51:23 +03:00
|
|
|
</script>
|
|
|
|
|
2015-04-26 16:28:52 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
2015-05-28 00:15:43 +03:00
|
|
|
src="<?php echo $this->config->item('base_url'); ?>/assets/js/frontend_book_success.js"></script>
|
2015-04-26 16:28:52 +03:00
|
|
|
|
2015-04-26 15:44:25 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
2015-05-28 00:15:43 +03:00
|
|
|
src="<?php echo $this->config->item('base_url'); ?>/assets/js/general_functions.js"></script>
|
2013-04-20 20:20:16 +03:00
|
|
|
</body>
|
|
|
|
</html>
|