-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.php
More file actions
88 lines (67 loc) · 2.52 KB
/
privacy.php
File metadata and controls
88 lines (67 loc) · 2.52 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
<?php
include("sessions/handler.php");
include("load/config.php");
include("load/i18n.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Import CSS -->
<?php
$page_title = __('privacy.title');
include("load/header.php");
?>
</head>
<body>
<?php
include('load/nav_public.php');
?>
<section class="perti-hero perti-hero--full fh-section bg-position-center jarallax bg-dark text-light" data-jarallax data-speed="0.3">
<div class="container-fluid pt-2 pb-5 py-lg-6">
<img class="jarallax-img" src="assets/img/jumbotron/main.png" alt="" style="opacity: 50%;">
<center>
<h1><?= __('privacy.title') ?></h1>
<h4 class="text-white hvr-bob pl-1">
<?= __('privacy.lastUpdated') ?>
</h4>
</center>
</div>
</section>
<!-- Content -->
<div class="container mt-4 mb-3">
<div class="card">
<div class="card-body">
<h5><?= __('privacy.registrationTitle') ?></h5>
<p><?= __('privacy.registrationText') ?></p>
<h5><?= __('privacy.collectionTitle') ?></h5>
<p><?= __('privacy.collectionIntro') ?></p>
<ul>
<li><?= __('privacy.collectionItem1') ?></li>
<li><?= __('privacy.collectionItem2') ?></li>
</ul>
<p><?= __('privacy.collectionRemoval') ?></p>
<h5><?= __('privacy.sharingTitle') ?></h5>
<p><?= __('privacy.sharingIntro') ?></p>
<ul>
<li>VATSIM</li>
<li>VATUSA</li>
<li>Other VATUSA ARTCCs</li>
<li>Other VATSIM Divisions/Regions</li>
<li>Google</li>
<li>Discord</li>
<li>Law Enforcement Agencies</li>
</ul>
<h5><?= __('privacy.cookiesTitle') ?></h5>
<p><?= __('privacy.cookiesText') ?></p>
<h5><?= __('privacy.thirdPartyTitle') ?></h5>
<p><?= __('privacy.thirdPartyText') ?></p>
<h5><?= __('privacy.securityTitle') ?></h5>
<p><?= __('privacy.securityText') ?></p>
<h5><?= __('privacy.changesTitle') ?></h5>
<p><?= __('privacy.changesText') ?></p>
</div>
</div>
</div>
</body>
<?php include('load/footer.php'); ?>
</html>