-
Notifications
You must be signed in to change notification settings - Fork 0
/
global_header.php
executable file
·73 lines (66 loc) · 2.57 KB
/
global_header.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
66
67
68
69
70
71
72
73
<?
session_start();
if (!$_SESSION['location'] || $_SESSION['location'] < 1)
{
header("Location: login.php");
exit;
}
require('mysql.php');
//$_SESSION['location']
//$_SESSION['username']
//$_SESSION['location_name']
?>
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>Blue Iguana Car Wash</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<style>
body {
padding-top: 50px;
padding-bottom: 20px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery.min.js"><\/script>')</script>
<script src="js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/jquery-ui.css">
<script src="js/jquery-ui.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<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="#" style="padding: 7px !important">
<img src='images/logo_top.png' width="77" height="34" style="display:inline">
<img src='images/logo_bottom_inverted.png' width="183" height="35" style="display:inline">
</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<form class="navbar-form navbar-right">
<a href="evening_pull.php" class="btn btn-success">SpreadSheet</a>
<a href="deposit_log.php" class="btn btn-default">Deposit Log</a>
<a href="logout.php" class="btn btn-danger">Logout</a>
</form>
</div><!--/.navbar-collapse -->
</div>
</nav>
<div class="container">
<br>