forked from Rezgo/rezgo-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page_waiver.php
33 lines (27 loc) · 1.1 KB
/
page_waiver.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
// This is the waiver page
require('rezgo/include/page_header.php');
// start a new instance of RezgoSite
$site = new RezgoSite(secure);
$domain = "https://".$site->getDomain();
$site->sendTo($domain.'.rezgo.com/waiver/');
// Page title
$site->setPageTitle($_REQUEST['title'] ? $_REQUEST['title'] : 'Waiver');
?>
<?php echo $site->getTemplate('frame_header')?>
<?php echo $site->getTemplate('waiver')?>
<div class="container-fluid" id="waiver-footer">
<?php if (!$_REQUEST['headless']) { ?>
<div style="float:right;height:52px;margin:10px;display:table;">
<div style="display:table-cell;vertical-align:bottom;">
<div style="font-size:12px;">
<a href="http://www.rezgo.com/features/online-booking/" title="Powering Tour and Activity Businesses Worldwide" style="color:#333;text-decoration:none;" target="_blank">
<span style="display:inline-block;width:65px;text-indent:-9999px;margin-left:4px;background:url(<?php echo $site->path;?>/img/rezgo-logo.svg) no-repeat; background-size:contain;">Rezgo</span>
</a>
</div>
</div>
</div>
<?php } ?>
</div>
</body>
</html>