forked from ckoval7/fdlogdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview-log.php
More file actions
43 lines (43 loc) · 1.13 KB
/
view-log.php
File metadata and controls
43 lines (43 loc) · 1.13 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
<?php session_start();
$_SESSION['band'] = "";
$_SESSION['mode'] = "";
?>
<!DOCTYPE html>
<html>
<head>
<title>Field Day Log</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">
<?php
if (!empty($_SESSION['priv'])) {
echo '
<div class="row">
<a href="/enter-log.php"><h3>Click here to submit logs</h3></a>
</div><hr>';
} ?>
<div class="row">
<div id="recent-contacts">
<?php include '/php/displaylog.php'; ?>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include '/js/scripthtml.php'; ?>
</body>
</html>