🤩 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:terms-conditions.php
<?php require_once __DIR__ . '/../includes/config.php'; require_once __DIR__ . '/../includes/db.php'; require_once __DIR__ . '/../includes/functions.php'; $page = 'terms'; $page_title = 'Terms & Conditions'; 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">Terms & Conditions</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;">Terms & Conditions</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['terms_conditions'] ?? ' <h3>1. Acceptance of Terms</h3> <p>By accessing and using VELORA, you accept and agree to be bound by the terms and provision of this agreement.</p> <h3>2. Use of Site</h3> <p>You may use this site to browse, purchase products, and access information. You agree not to use this site for any unlawful purpose.</p> <h3>3. Product Information</h3> <p>We strive to provide accurate product information including descriptions, prices, and availability. However, we do not warrant that such information is always accurate.</p> <h3>4. Pricing</h3> <p>All prices are listed in the local currency and are subject to change without notice. We reserve the right to modify prices at any time.</p> <h3>5. Order Acceptance</h3> <p>Your order is an offer to buy, which we may accept or decline at our discretion. We may require additional verification before accepting any order.</p> <h3>6. Payment Terms</h3> <p>Payment is due at the time of purchase. We accept various payment methods as listed on our checkout page.</p> <h3>7. Shipping and Delivery</h3> <p>We will make every effort to deliver your order in a timely manner. Delivery times are estimates and may vary based on location and availability.</p> <h3>8. Returns and Refunds</h3> <p>Please refer to our Return Policy for detailed information about returns and refunds.</p> <h3>9. Limitation of Liability</h3> <p>VELORA shall not be liable for any indirect, incidental, or consequential damages arising from the use of our services.</p> <h3>10. Changes to Terms</h3> <p>We reserve the right to modify these terms at any time. Continued use of the site constitutes acceptance of modified terms.</p> ' ?> </div> </div> </div> </div> </section> </main> <?php require_once '../includes/footer.php'; ?>
Save Changes
Cancel
Create New File
Create New Folder