-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
73 lines (68 loc) · 2.25 KB
/
index.php
File metadata and controls
73 lines (68 loc) · 2.25 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
<!--This page is coded by Mohammed Zahid Wadiwale and is intellectual property of Zahid Servers-->
<?php
$myfile = fopen("./installation/installation.txt", "r") or die("Unable to open file!");
$zahid=fread($myfile,filesize("./installation/installation.txt"));
fclose($myfile);
if($zahid=='0')
{
echo"<script>window.location.href='installation';</script>";
}
?>
<!doctype html>
<!--This page is coded by Mohammed Zahid Wadiwale and is intellectual property of Zahid Servers-->
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="icon" href="favicon2.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon2.ico" type="image/vnd.microsoft.icon">
<link rel="shortcut icon" type="image/x-icon" href="favicon2.ico" />
<html oncontextmenu="return showcontextmenu(event);" >
<?php include 'contextmenu.php'?>
<head>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="icon" href="favicon2.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon2.ico" type="image/vnd.microsoft.icon">
<link rel="shortcut icon" type="image/x-icon" href="favicon2.ico" />
<title><?php include 'sitetitle.php'?>|Welcome to Home Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php include 'styleindex.css'?>
</head>
<body contenteditable="false">
<?php include 'header.php'; ?>
<?php include 'navs.php'; ?>
<div class="content">
<?php include 'message/mpopup.php';?>
<div id="change">
<div id="homess">
<?php include 'banner.php'; ?>
</div>
<?php include 'slider.php'; ?>
<div id="pricing">
<?php include 'banner2.php' ;?>
<?php include 'jscounter\jscountup.php' ;?>
<div id="alumini" class="alumini">
<iframe height="100%" onmouseenter='hidecontextmenu();' src="alslider2.php" frameborder="0" scrolling="no" style="width:100%;position: absolute; height: 70%; border: none"></iframe> </div>
</div>
<br><br>
<br><br>
<br><br>
<br><br>
<br><br>
<br><br>
<br><br>
</div>
<div id="footer">
<?php include 'footer.php'?>
</div>
</div>
<script>
window.onscroll = function() {myFunction()};
var navbar = document.getElementById("navbar");
var sticky = navbar.offsetTop;
function myFunction() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky")
} else {
navbar.classList.remove("sticky");
}
}
</script>
</body></html>