atcRoster.php 855 Bytes
<?php
session_start();
require_once 'classes/realops.php';
$get = new Get();
$stats = new Stats();
date_default_timezone_set('Australia/Sydney');
?>
    <!DOCTYPE html>
<html lang="en">
    <head>
        <?php include 'sections/header.php'; ?>
    </head>
<body>
<div class="wrapper">
    <?php include 'sections/navbar.php' ?>
    <div class="container" id="realops-container">
        <div class="row">
            <article class="col-sm-12 panel panel-default" id="realops-body">
<h2 class="sub-header">My Booked Flights</h2>

<div class="alert alert-danger" role="alert">
  <strong>Too soon.</strong> ATC Positions not published yet. Please check back again later.
</div>

            </article>
        </div><!-- /.row -->
    </div><!-- /.container -->
</div><!-- /.wrapper -->

<?php include 'sections/footer.php'; ?>