34760-vm/privacy.php
Flatlogic Bot d47e350516 v1
2025-10-07 16:17:37 +00:00

38 lines
1.2 KiB
PHP

<?php
$pageTitle = "Privacy Policy";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo htmlspecialchars($pageTitle); ?> - Your Real Feedback</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<header class="header">
<div class="container">
<a href="/" class="logo">Your Real Feedback</a>
</div>
</header>
<main class="container py-5">
<h1>Privacy Policy</h1>
<p>This is a placeholder for your privacy policy. You should replace this with your own terms.</p>
<p>Information we collect and why we collect it...</p>
<p>How we use that information...</p>
<p>etc...</p>
</main>
<footer class="footer">
<div class="container">
<p>&copy; <?php echo date('Y'); ?> Your Real Feedback. All Rights Reserved.</p>
<p><a href="/privacy.php">Privacy Policy</a></p>
</div>
</footer>
</body>
</html>