forked from ckoval7/fdlogdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php.old
More file actions
50 lines (50 loc) · 1.35 KB
/
index.php.old
File metadata and controls
50 lines (50 loc) · 1.35 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
<?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>
<div id="outer_wrapper" class="grid">
<header id="site_header" class="col-10">
<div class="header">
<?php include 'header.php';?>
</div>
</header>
<div class="col-2">
<?php include 'navbar.php';?>
</div>
<div class="row">
<div id="inner_wrapper" class="col-10">
<div id="welcome" class="row">
Welcome to our field day site! If you are ust 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">
<?php include '/php/displayloghome.php'; ?>
</div>
</div>
<hr>
<div class="row">
<div id="recent-images">
Last 5 images here
</div>
</div>
</div>
</div>
</div>
<?php include '/js/scripthtml.php'; ?>
</body>
</html>