2013-04-20 20:20:16 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
|
|
|
2013-05-04 00:26:04 +03:00
|
|
|
<?php // INCLUDE JS FILES ?>
|
2013-05-17 16:09:10 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
|
|
|
src="<?php echo $this->config->base_url(); ?>assets/js/libs/jquery/jquery.min.js">
|
|
|
|
</script>
|
2013-05-04 00:26:04 +03:00
|
|
|
|
2013-04-20 20:20:16 +03:00
|
|
|
<?php // INCLUDE CSS FILES ?>
|
2013-05-17 16:09:10 +03:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
|
|
|
href="<?php echo $this->config->base_url(); ?>assets/css/libs/bootstrap/bootstrap.css">
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
|
|
|
href="<?php echo $this->config->base_url(); ?>assets/css/libs/bootstrap/bootstrap-responsive.css">
|
2013-04-20 20:20:16 +03:00
|
|
|
|
|
|
|
<?php // SET FAVICON FOR PAGE ?>
|
2013-05-17 16:09:10 +03:00
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/x-icon"
|
|
|
|
href="<?php echo $this->config->base_url(); ?>assets/images/favicon.ico">
|
2013-04-20 20:20:16 +03:00
|
|
|
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background-color: #CAEDF3;
|
|
|
|
}
|
|
|
|
|
|
|
|
#success-frame {
|
|
|
|
width: 660px;
|
|
|
|
margin: 150px auto 0 auto;
|
|
|
|
background: #FFF;
|
2013-05-04 00:26:04 +03:00
|
|
|
border: 1px solid #DDDADA;
|
2013-04-20 20:20:16 +03:00
|
|
|
min-height: 197px;
|
|
|
|
padding: 108px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#success-icon {
|
|
|
|
float: left;
|
2013-05-04 00:26:04 +03:00
|
|
|
margin: 10px 25px 100px 50px;
|
2013-04-20 20:20:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2013-06-03 17:42:19 +03:00
|
|
|
<div id="success-frame" class="frame-container">
|
2013-05-04 00:26:04 +03:00
|
|
|
<img id="success-icon" src="<?php echo $this->config->base_url(); ?>assets/images/success.png" />
|
2013-05-17 16:09:10 +03:00
|
|
|
|
2013-04-20 20:20:16 +03:00
|
|
|
<h2>Your appointment has been successfully registered.</h2>
|
|
|
|
<p>An email with the appointment details has been sented to you.</p>
|
2013-05-17 16:09:10 +03:00
|
|
|
|
|
|
|
<a id="google-sync"
|
|
|
|
href="<?php echo $this->config->base_url() . 'appointments/google_sync/' . $appointment_id; ?>">
|
|
|
|
Sync with Google Calendar
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// Display exception message (if any).
|
|
|
|
if (isset($notification_error)) {
|
|
|
|
echo $notification_error;
|
|
|
|
}
|
|
|
|
?>
|
2013-04-20 20:20:16 +03:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|