-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.php
More file actions
68 lines (62 loc) · 2.24 KB
/
Copy pathinstall.php
File metadata and controls
68 lines (62 loc) · 2.24 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
<?php
session_start();
require( 'functions/functions.php' );
error_reporting( E_ALL );
ini_set( 'display_errors', '1' );
$_SESSION["page"] = "2s2h site - install";
?>
<html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="description" content="<?php echo $description[$_SESSION["page"]]; ?>" />
<title><?php echo $_SESSION["page"]; ?></title>
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script src="js/login.js" type="text/javascript"></script>
<?php if ( isset($_SESSION['status']) && $_SESSION['status'] == 'admin') {?>
<script src="js/slide-admin.js" type="text/javascript"></script>
<?php } else {?>
<script src="js/slide.js" type="text/javascript"></script>
<?php }?>
<link rel="stylesheet" href="css/style.css" type="text/css" />
<link rel="stylesheet" href="css/slide.css" type="text/css" media="screen" />
</head>
<body>
<!-- Panel -->
<div id="toppanel">
<div id="panel">
<div class="content clearfix">
<div class="left all">
<?php restrictedArea($_SESSION['status']) ?>
</div>
</div>
</div>
<!-- The tab on top -->
<div class="tab">
<ul class="login">
<li class="left"> </li>
<li id="toggle">
<a id="open" class="open" href="#">Admin Area</a>
<a id="close" class="close" href="#">Close</a>
</li>
<li class="right"> </li>
</ul>
</div> <!-- / top -->
</div> <!--panel -->
<div id="header">
<a href="index.php" title="2step 2hell - Noleggio Server - BanBot"><img alt="" src="img/spacer.gif" width="800" height="235" /></a>
</div>
<div class="separate">
<div id="menu-top"></div>
<div id="menu-center"><div id="menu"><?php menuPages( $_SESSION["page"] ) ?></div></div>
<div id="menu-bottom"></div>
</div>
<p>
<?php
$init = new WebClass( true );
echo bottomPageInfo();
?>
</p>
</body>
</html>