🤩 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:order-success.php
<?php require_once __DIR__ . '/../includes/config.php'; require_once __DIR__ . '/../includes/db.php'; require_once __DIR__ . '/../includes/functions.php'; $page = 'order-success'; $page_title = 'Order Successful'; $order_number = $_GET['order'] ?? ''; require_once '../includes/header.php'; require_once '../includes/navbar.php'; ?> <main> <section class="order-success-section" style="padding: 80px 0; min-height: 60vh;"> <div class="container"> <div class="row justify-content-center"> <div class="col-lg-6 text-center"> <div class="success-icon" style="width: 120px; height: 120px; background: var(--soft-pink); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; animation: scaleIn 0.5s ease;"> <i class="fas fa-check" style="font-size: 3rem; color: var(--primary-rose-gold);"></i> </div> <h1 style="font-size: 2.5rem; margin-bottom: 15px;">Thank You!</h1> <p style="font-size: 1.1rem; color: var(--gray-600); margin-bottom: 10px;">Your order has been placed successfully</p> <?php if ($order_number): ?> <p style="margin-bottom: 30px;">Order Number: <strong style="color: var(--primary-rose-gold); font-size: 1.2rem;"><?= htmlspecialchars($order_number) ?></strong></p> <?php endif; ?> <p style="color: var(--gray-600); margin-bottom: 40px;">We've sent a confirmation email to your registered email address. You can track your order from your account dashboard.</p> <div style="display: flex; gap: 15px; justify-content: center; flex-wrap: wrap;"> <a href="<?= SITE_URL ?>pages/orders.php" class="btn-luxury"> <i class="fas fa-box"></i> View My Orders </a> <a href="<?= SITE_URL ?>pages/shop.php" class="btn-outline-luxury"> <i class="fas fa-shopping-bag"></i> Continue Shopping </a> </div> </div> </div> </div> </section> <style> @keyframes scaleIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } } </style> </main> <?php require_once '../includes/footer.php'; ?>
Save Changes
Cancel
Create New File
Create New Folder