30971-vm/privacy.php
Flatlogic Bot f26dd27edb v2
2025-10-16 13:37:20 +00:00

60 lines
3.5 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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">Alex</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 were 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, well 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>&copy; <?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>