🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:privacy-policy.php
<?php require_once __DIR__ . '/../includes/config.php'; require_once __DIR__ . '/../includes/db.php'; require_once __DIR__ . '/../includes/functions.php'; $page = 'privacy'; $page_title = 'Privacy Policy'; require_once '../includes/header.php'; require_once '../includes/navbar.php'; $settings = get_settings(); ?> <main> <section style="background: var(--light-marble); padding: 20px 0;"> <div class="container"> <nav aria-label="breadcrumb"> <ol class="breadcrumb mb-0"> <li class="breadcrumb-item"><a href="<?= SITE_URL ?>">Home</a></li> <li class="breadcrumb-item active">Privacy Policy</li> </ol> </nav> </div> </section> <section style="padding: 60px 0;"> <div class="container"> <div class="row justify-content-center"> <div class="col-lg-9"> <h1 style="font-size: 2.5rem; margin-bottom: 30px;">Privacy Policy</h1> <p class="text-muted">Last updated: <?= date('F d, Y') ?></p> <div style="background: var(--white); border-radius: 16px; padding: 40px; box-shadow: var(--shadow-sm); line-height: 1.8; color: var(--gray-700);"> <?= $settings['privacy_policy'] ?? ' <h3>1. Information We Collect</h3> <p>We collect information you provide directly to us, such as when you create an account, make a purchase, subscribe to our newsletter, or contact us.</p> <h3>2. How We Use Your Information</h3> <p>We use your information to process transactions, send periodic emails, improve our website, and respond to your inquiries.</p> <h3>3. Information Sharing</h3> <p>We do not sell, trade, or otherwise transfer your personally identifiable information to third parties without your consent.</p> <h3>4. Data Security</h3> <p>We implement a variety of security measures to maintain the safety of your personal information when you place an order.</p> <h3>5. Cookies</h3> <p>Our website uses cookies to enhance your experience, analyze site traffic, and personalize content.</p> <h3>6. Your Rights</h3> <p>You have the right to access, correct, or delete your personal information at any time through your account settings.</p> <h3>7. Contact Us</h3> <p>If you have any questions about this Privacy Policy, please contact us at ' . htmlspecialchars($settings['contact_email'] ?? 'support@velora.com') . '.</p> ' ?> </div> </div> </div> </div> </section> </main> <?php require_once '../includes/footer.php'; ?>
Save Changes
Cancel
Create New File
Create New Folder