-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.php
65 lines (55 loc) · 1.81 KB
/
main.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
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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Welcome To Luxury</title>
<link rel="stylesheet" href="css/logged.css">
<link href="https://fonts.googleapis.com/css?family=Arima+Madurai|Bungee+Inline|Bungee+Outline|Bungee+Shade|Rakkas|Rasa|Shrikhand|Yatra+One|Space+Mono" rel="stylesheet">
</head>
<body>
<script type="text/javascript" language="JavaScript">
setTimeout(function () {
window.location.href = '/index.php';
},180000);
</script>
<style>
html {
background: url("images/bg2.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
<section class="about">
<p class="about-links">
<a href="./index.php" target="_parent">Main Page</a>
<a href="./tablet" target="_parent">Mobile page</a>
<?php
if($this_user['rank'] >= "2") {
?>
<a href="./index.php?p=SCHEDULE.main" target="_parent">Scheduling</a>
<a href="./index.php?p=CONF.main" target="_parent">settings</a>
<?php
}
?>
<a href="./index.php?p=info.main" target="_parent">Info</a>
<a href="./index.php?p=logout" target="_parent">Logout</a>
</p>
</section>
<section class="container">
<div class="login">
<h1>Oasis Luxury Home SPA</h1>
<!--- include from here --->
<?php
Include("include.php");
?>
<!-- End includes --->
</div>
</section>
</body>
</html>