diff options
Diffstat (limited to 'management-interface/index.php')
-rwxr-xr-x | management-interface/index.php | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/management-interface/index.php b/management-interface/index.php deleted file mode 100755 index dbd73ce..0000000 --- a/management-interface/index.php +++ /dev/null @@ -1,79 +0,0 @@ -<?php -# include important scripts - -require "./php/settings.php"; -require "./php/functions.php"; - -$include = true; - -?> -<!DOCTYPE html> -<html lang="en"> - <head> - <meta charset="utf-8"> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - <meta name="description" content=""> - <meta name="author" content=""> - <!--<link rel="shortcut icon" href="../../assets/ico/favicon.ico">--> - - <title><?php echo PAGENAME; ?></title> - - <!-- Bootstrap core CSS --> - <link href="./css/bootstrap.min.css" rel="stylesheet"> - - <!-- Custom styles for this template --> - <link href="./css/custom.css" rel="stylesheet"> - - <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> - <!--[if lt IE 9]> - <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> - <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> - <![endif]--> - </head> - - <body> - - <!-- Static navbar --> - <div class="navbar navbar-default navbar-static-top" role="navigation"> - <div class="container"> - <div class="navbar-header"> - <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> - <span class="sr-only">Toggle navigation</span> - <span class="icon-bar"></span> - <span class="icon-bar"></span> - <span class="icon-bar"></span> - </button> - <a class="navbar-brand" href="<?php echo $_SERVER["PHP_SELF"]; ?>?m=home"><?php echo PAGENAME; ?></a> - </div> - <div class="navbar-collapse collapse"> - <ul class="nav navbar-nav"> - <li<?php echo ($_item=="home")?" class=\"active\"":""; ?>><a href="<?php echo $_SERVER["PHP_SELF"]; ?>?m=home">Home</a></li> - <li<?php echo ($_item=="user")?" class=\"active\"":""; ?>><a href="<?php echo $_SERVER["PHP_SELF"]; ?>?m=user">User</a></li> - <li<?php echo ($_item=="about")?" class=\"active\"":""; ?>><a href="<?php echo $_SERVER["PHP_SELF"]; ?>?m=about">About</a></li> - </ul> - <ul class="nav navbar-nav navbar-right"> - <li<?php echo ($_item=="login")?" class=\"active\"":""; ?>><a href="<?php echo $_SERVER["PHP_SELF"]; ?>?m=login">Login</a></li> - </ul> - </div><!--/.nav-collapse --> - </div> - </div> - - - <div class="container"> - - <?php - include "./php/" . $_item . ".inc.php"; - ?> - - </div> <!-- /container --> - - - <!-- Bootstrap core JavaScript - ================================================== --> - <!-- Placed at the end of the document so the pages load faster --> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> - <script src="../../dist/js/bootstrap.min.js"></script> - </body> -</html> - |