-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogbook.php
21 lines (20 loc) · 842 Bytes
/
logbook.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php session_start(); ?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="public/css/navbar.css">
<link rel="stylesheet" href="public/css/admin.css">
<link rel="stylesheet" href="public/css/stats.css">
<script src="https://kit.fontawesome.com/47757d73c8.js"></script>
<title>Your airline name here</title>
</head>
<body class="admin">
<?php include 'public/objects/dash-navbar.php'; ?>
<?php include 'public/objects/dash-stats.php'; ?>
<table>
<tr><th>Pirep ID</th><th>Flight Callsign</th><th>Dep airport</th><th>Arr airport</th><th>Flight time</th><th>Dep time</th><th>Arr Time</th><th>Remarks</th><th>Time of submission</th><th>Pirep status</th></tr>
<?php include 'includes/flightfetch.inc.php'; ?>
</table>
</body>
</html>