testing for Chris
[soho-sigint.git] / server / index.php
1 <?php
2 include("includes.php");
3 ?>
4 <DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> 
6     <head>
7         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8         <title>Wireless Butler</title>
9         <link rel="stylesheet" type="text/css" media="screen" href="styles/styles.css" />
10         <script type="text/javascript" src="js/jquery-2.1.3.js"></script>
11     </head> 
12     <body>
13         <div id="wrapper">
14             <div id="includedHeader" class="clearfix">
15             <?php include("templates/header.php"); ?>
16             </div>
17
18             <div class="wv_content">
19                 <!-- Feeling a little sneaky are we? -->
20                 <?php
21                 $page=$_GET['wtf'];
22                 $pita=$_GET['pita'];
23                 $logout=$_GET['logout'];
24                 echo $wtf;      
25                 if($page=="wirelessnetworks") {
26                   include("wirelessnetworks.soho");
27                 } else if ($page=="clientdevices") {
28                   include("clientdevices.soho");
29                 } else {
30                   include("index.soho");
31                 }
32                 ?>
33             </div>
34             <div id="includedFooter" class="clearfix">
35             <?php include("templates/footer.php"); ?>
36             </div>
37         </div>
38
39     </body>
40 </html>