-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
51 lines (44 loc) · 1.98 KB
/
index.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
48
49
50
51
<?php
require_once '../includes/config.php';
require_once '../includes/functions.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - <?php echo APP_NAME; ?></title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100">
<div class="container mx-auto px-4 py-8">
<h1 class="text-3xl font-bold mb-6">Privacy Policy Information Hub</h1>
<div class="bg-white shadow-md rounded-lg p-6 mb-6">
<h2 class="text-2xl font-semibold mb-4">Our Privacy Policy</h2>
<p class="mb-4">Last updated: <?php echo date('F j, Y', strtotime($privacy_policy['updated_at'])); ?></p>
<div class="prose max-w-none">
<?php echo $privacy_policy['content']; ?>
</div>
</div>
<div class="bg-white shadow-md rounded-lg p-6 mb-6">
<h2 class="text-2xl font-semibold mb-4">Your Data Rights</h2>
<ul class="list-disc pl-5">
<li>Right to access your personal data</li>
<li>Right to rectify inaccurate personal data</li>
<li>Right to erasure ('right to be forgotten')</li>
<li>Right to restrict processing</li>
<li>Right to data portability</li>
<li>Right to object to processing</li>
</ul>
</div>
<div class="bg-white shadow-md rounded-lg p-6">
<h2 class="text-2xl font-semibold mb-4">Contact Us</h2>
<p>If you have any questions about our privacy policy or your data rights, please contact our Data Protection Officer:</p>
<p class="mt-2">
<strong>Email:</strong> dpo@<?php echo $_SERVER['HTTP_HOST']; ?><br>
<strong>Address:</strong> [Your Company Address]
</p>
</div>
</div>
</body>
</html>