credits.php
2.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?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>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>ATC Roster - RealOps</title>
<?php include 'sections/header.php'; ?>
</head>
<body>
<?php include 'sections/navbar.php'; ?>
<div class="container-fluid">
<div class="row">
<?php include 'sections/sidebar.php'; ?>
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
<img src="snl.jpg" style="max-width:550px; width:100%; text-align:center;" /><br /><br />
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3>Thank you to the following who played a major part in creating this event!</h3>
<div class="row">
<div class="col-sm-4">
<strong>Schedules:</strong>
</div>
<div class="col-sm-8">
<ul>
<li>Trent Hopkinson</li>
<li>James Thomson</li>
<li>Nathan Opresnik</li>
<li>Josh Monteforte</li>
</ul>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-4">
<strong>Website & Event Coordination:</strong>
</div>
<div class="col-sm-8">
<ul>
<li>Hayden McClure</li>
</ul>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-4">
<strong>Prizes:</strong>
</div>
<div class="col-sm-8">
<ul>
<li>George from FlyTampa<br />
</ul>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-4">
<strong>VATPAC Director of Events and Communications: </strong>
</div>
<div class="col-sm-8">
<ul>
<li>Tracy Shiffman</li>
</ul>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-4">
<strong>VATPAC Operations Department: </strong>
</div>
<div class="col-sm-8">
<ul>
<li>David Zhong</li>
<li>Kurt D'Amico</li>
</ul>
</div>
</div>
<span style="font-style:italic;">We also thank all the pilots, controllers, and virtual airlines for their participation to make this a fun event for all.</span>
</div>
</div>
</div>
<?php include 'sections/loginBox.php'; ?>
</div>
<?php include 'sections/footer.php' ?>
</body>
</html>