-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbeta-access-merchant-thank-you.php
More file actions
77 lines (62 loc) · 2.03 KB
/
beta-access-merchant-thank-you.php
File metadata and controls
77 lines (62 loc) · 2.03 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
require_once("includes/config.php");
$couzoo->CheckLogin();
?>
<style type="text/css">
.sign-in-nav-container{visibility:hidden !important;}
#footer-column{visibility:hidden !important;}
</style>
<!--START HEADER & Log-in, Log-out, Register, My Account-->
<?php include ("header.php"); ?>
<!--END HEADER & Log-in, Log-out, Register, My Account-->
<style type="text/css">
.sign-in-nav-container{visibility:hidden !important;}
#footer-column{visibility:hidden !important;}
</style>
<div id="container">
<div id="page-top-push"></div>
<div id="main-column">
<div class="welcome-customer-container-head">
<h1>Thank you!</h1>
<p>Thank you for expressing interest in CouZoo. We will be in touch soon with more info about CouZoo. We will also get you access to CouZoo.com Beta, where you will be able to create an account and start making deals. We look forward to working with you and helping you save a lot more money when you bring customers in your door with local online deals.
<br><br>
Talk to you soon.
<br /><br />
CouZoo
</p>
</div><!--end welcome-customer-container-head-->
</div><!--END MAIN-COLUMN-->
<div id="side-column"><!--start right side column-->
</div><!--END right side column-->
</div><!--end container-->
<br clear="all"/>
<!--START FOOTER-->
<?php include ("footer.php"); ?>
<!--END FOOTER-->
<script type="text/javascript">
var url = "http://www.couzoo.com";
var delay = "15000";
window.onload = function ()
{
DoTheRedirect()
}
function DoTheRedirect()
{
setTimeout(GoToURL, delay)
}
function GoToURL()
{
// IE8 and lower fix
if (navigator.userAgent.match(/MSIE\s(?!9.0)/))
{
var referLink = document.createElement("a");
referLink.href = url;
document.body.appendChild(referLink);
referLink.click();
}
// All other browsers
else { window.location.replace(url); }
}
</script>
</body>
</html>