-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhiddendash.php
24 lines (24 loc) · 905 Bytes
/
hiddendash.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="public/css/master.css">
<link rel="stylesheet" href="public/css/navbar.css">
<link rel="stylesheet" href="public/css/dash.css">
<link rel="stylesheet" href="public/css/stats.css">
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" href="https://use.typekit.net/eiy7ugg.css">
<script src="https://kit.fontawesome.com/47757d73c8.js"></script>
</head>
<body>
<?php include 'public/objects/dash-navbar.php'; ?>
<div class="container">
<h1>Welcome, <?php echo $_SESSION['callsign']; ?>,</h1>
</div>
<?php include 'public/objects/dash-stats.php'; ?>
<?php include 'public/objects/pirep.php'; ?>
<?php include 'public/objects/community.php'; ?>
<?php include 'public/objects/footer.php'; ?>
</body>
</html>