38 lines
1.2 KiB
PHP
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>© <?php echo date('Y'); ?> Your Real Feedback. All Rights Reserved.</p>
|
|
<p><a href="/privacy.php">Privacy Policy</a></p>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|