forked from ckoval7/fdlogdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
51 lines (51 loc) · 1.42 KB
/
index.php
File metadata and controls
51 lines (51 loc) · 1.42 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
44
45
46
47
48
49
50
51
<?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">
<div id="welcome" class="row">
Welcome to our field day site! If you are just a visitor please take a moment to sign the <a href="/guestbook.php">guestbook.</a>
<br>
If you are an operator please sign in or register to submit logs, add inventory, and submit pictures.
</div>
<hr>
<div class="row">
<div id="recent-contacts">
<fieldset>
<legend>Last 15 Contacts</legend>
<?php include '/php/displayloghome.php'; ?>
</fieldset>
</div>
</div>
<hr>
<div class="row">
<div id="recent-images">
Last 5 images here
</div>
</div>
</div>
</div>
</div>
</div>
<?php include '/js/scripthtml.php'; ?>
</body>
</html>