forked from umutcamliyurt/Anon-File-Upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy-policy.php
47 lines (40 loc) · 1.3 KB
/
privacy-policy.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
require 'set_headers.php';
$jsFilePaths = [
'./js/languageSwitcher.js'
];
$cssFilePaths = [
'./styles/privacy-policy.css'
];
$elements = setSecurityHeadersAndGenerateElements($jsFilePaths, $cssFilePaths);?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy</title>
<?php insertElementsIntoHead($elements); ?>
</head>
<body>
<div class="container">
<div class="language-switcher">
<button id="lang-en-btn">English</button>
<button id="lang-tr-btn">Türkçe</button>
</div>
<div id="lang-en" class="block">
<h1>Privacy Policy</h1>
<p>This website does not collect
any personally identifiable information (PII) from its users.</p>
<p>Last
updated: <time datetime="2024-06-24">June 24, 2024</time></p>
</div>
<div id="lang-tr" class="hidden">
<h1>Gizlilik Politikası</h1>
<p>Bu web sitesi, kullanıcılarından herhangi bir kişisel olarak tanımlanabilir
bilgi toplamaz.</p>
<p>Son güncelleme: <time datetime="2024-06-24">24 Haziran
2024</time></p>
</div>
</div>
</body>
</html>