60 lines
3.5 KiB
PHP
60 lines
3.5 KiB
PHP
<?php
|
||
$page_title = "Privacy Policy";
|
||
$page_description = "Privacy Policy for our website.";
|
||
?>
|
||
<!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($page_title); ?> - Personal Portfolio</title>
|
||
<meta name="description" content="<?php echo htmlspecialchars($page_description); ?>">
|
||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
||
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
||
</head>
|
||
<body>
|
||
|
||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
|
||
<div class="container">
|
||
<a class="navbar-brand" href="index.php">Personal Portfolio</a>
|
||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
||
<span class="navbar-toggler-icon"></span>
|
||
</button>
|
||
<div class="collapse navbar-collapse" id="navbarNav">
|
||
<ul class="navbar-nav ms-auto">
|
||
<li class="nav-item"><a class="nav-link" href="index.php#home">Home</a></li>
|
||
<li class="nav-item"><a class="nav-link" href="index.php#about">About</a></li>
|
||
<li class="nav-item"><a class="nav-link" href="index.php#portfolio">Portfolio</a></li>
|
||
<li class="nav-item"><a class="nav-link" href="index.php#contact">Contact</a></li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</nav>
|
||
|
||
<main class="container" style="padding-top: 8rem; padding-bottom: 6rem;">
|
||
<h1>Privacy Policy</h1>
|
||
<p>This is a placeholder for your privacy policy. You should replace this text with your own policy.</p>
|
||
<p>Your privacy is important to us. It is our policy to respect your privacy regarding any information we may collect from you across our website.</p>
|
||
<h2>1. Information we collect</h2>
|
||
<p>We only ask for personal information when we truly need it to provide a service to you. We collect it by fair and lawful means, with your knowledge and consent. We also let you know why we’re collecting it and how it will be used.</p>
|
||
<h2>2. How we use your information</h2>
|
||
<p>We only retain collected information for as long as necessary to provide you with your requested service. What data we store, we’ll protect within commercially acceptable means to prevent loss and theft, as well as unauthorized access, disclosure, copying, use or modification.</p>
|
||
<h2>3. Cookies</h2>
|
||
<p>Our website may use cookies to enhance user experience.</p>
|
||
<h2>4. Links to other sites</h2>
|
||
<p>Our website may link to external sites that are not operated by us. Please be aware that we have no control over the content and practices of these sites, and cannot accept responsibility or liability for their respective privacy policies.</p>
|
||
<h2>5. Your consent</h2>
|
||
<p>By using our website, you hereby consent to our privacy policy and agree to its terms.</p>
|
||
<a href="index.php" class="btn btn-primary mt-4">Back to Home</a>
|
||
</main>
|
||
|
||
<footer class="text-center">
|
||
<div class="container">
|
||
<p>© <?php echo date("Y"); ?> Your Name. All Rights Reserved.</p>
|
||
</div>
|
||
</footer>
|
||
|
||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
||
</body>
|
||
</html>
|