52 lines
2.6 KiB
PHP
52 lines
2.6 KiB
PHP
<?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 - Leman99</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-white fixed-top">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="index.php" style="color: #6C63FF; font-weight: 600;">Leman99</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<main class="container" style="padding-top: 8rem;">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<h1>Privacy Policy</h1>
|
|
<p><em>Last updated: <?php echo date('F j, Y'); ?></em></p>
|
|
<p>This is a placeholder for your privacy policy. You should replace this with your own policy.</p>
|
|
<p>We respect your privacy and are committed to protecting it. This Privacy Policy explains our policies and practices regarding the information we collect from you.</p>
|
|
|
|
<h2>1. Information We Collect</h2>
|
|
<p>We may collect personally identifiable information from you in a variety of ways, including, but not limited to, when you visit our site, fill out a form, and in connection with other activities, services, features or resources we make available on our Site.</p>
|
|
|
|
<h2>2. How We Use Collected Information</h2>
|
|
<p>We may collect and use your personal information for the following purposes: to improve customer service, to personalize user experience, and to send periodic emails.</p>
|
|
|
|
<h2>3. Your Acceptance of These Terms</h2>
|
|
<p>By using this Site, you signify your acceptance of this policy. If you do not agree to this policy, please do not use our Site.</p>
|
|
|
|
<a href="index.php" class="btn btn-primary mt-4">Back to Home</a>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="mt-5">
|
|
<div class="container text-center">
|
|
<p>© <?php echo date("Y"); ?> Leman99. 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>
|