competition.php
3.36 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
<?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">
<div class="col-md-6">
<h1>Competition Information</h1>
<h2>Win a FlyTampa Scenery!</h2>
<section id="realops-index-copy">
<p>FlyTampa has generously donated one of their sceneries to one lucky pilot for this RealOps!</p>
<p>The prize will be awarded to the pilot that:</p>
<ol>
<li>Operates the most sectors into/out of Sydney Airport</li>
<li>Adheres to the slot times the closest</li>
</ol>
<p>You will be contacted via your VATSIM registered email address to organise your prize.</p>
<h4>We greatly appreciate FlyTampa's support of RealOps 2015!</h4>
<small><strong>Terms and Conditions:</strong>
<ul>
<li>The winner shall be judged by the Event Coordinator or VATPAC Operations Department based off the conditions listed on the competitions page.</li>
<li>The prize allocated is one scenery package donated by FlyTampa Sceneries.</li>
<li>The prize is not redeemable for cash.</li>
<li>The competition winner, once announced, is final and there shall be no appeal process.</li>
<li>Any questions should be directed at the Event Coordinator through the <a href="contact.php">Contact Us</a> page.</li>
</ul>
</small>
</section>
</div>
<div class="col-md-6" style="min-height: 72px;">
<div class="purchaseBanner" style="float:right;">
<a href="http://www.flytampa.org/order.html" class="btn btn-primary purchaseLargeButtons" style="margin-left:15px; margin-top:70px; display:none;" target="_blank">Purchase on FlyTampa</a>
<a href="http://secure.simmarket.com/flytampa-sydney.phtml" class="btn btn-primary purchaseLargeButtons" style="margin-right:15px; margin-top:70px; float:right; display:none;" target="_blank">Purchase on SimMarket</a>
<a href="http://www.flytampa.org/order.html" class="btn btn-primary purchaseSmallButtons" style="margin-left:15px; margin-top:33px; display:none;" target="_blank">FlyTampa</a>
<a href="http://secure.simmarket.com/flytampa-sydney.phtml" class="btn btn-primary purchaseSmallButtons" style="margin-right:15px; margin-top:33px; float:right; display:none;" target="_blank">SimMarket</a>
</div>
</div>
</article>
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.wrapper -->
<?php include 'sections/footer.php'; ?>