forked from ckoval7/fdlogdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinventory.php
More file actions
32 lines (32 loc) · 834 Bytes
/
inventory.php
File metadata and controls
32 lines (32 loc) · 834 Bytes
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
<?php
// Start the session
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<title>Field Day</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Corey Koval, K3CPK">
<meta name="application-name" content="Field Day Logging Database" />
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body onload="startTime()">
<div id="outer_wrapper" class="grid">
<div class="row">
<div id="menu" class="col-2">
<?php include '/navbar.php'; ?>
</div>
<div id="header2" class="col-10">
<?php include '/header2.php'; ?>
<div id="content">
Not implemented yet.
</div>
</div>
</div>
</div>
<?php include '/js/scripthtml.php'; ?>
</body>
</html>