X7ROOT File Manager
Current Path:
/home/u126090504/domains/oceanicabeachresort.com/public_html
home
/
u126090504
/
domains
/
oceanicabeachresort.com
/
public_html
/
📁
..
📄
.htaccess
(0 B)
📁
Version
📄
about.php
(4.19 KB)
📁
admin
📁
assets
📄
booking.php
(4.55 KB)
📄
booking_details.php
(4.43 KB)
📄
booking_process.php
(1.12 KB)
📄
config.php
(914 B)
📄
contact.php
(14.48 KB)
📄
contactdb.php
(796 B)
📄
footer.php
(13.26 KB)
📄
gallery.php
(2.82 KB)
📄
header.php
(19.3 KB)
📁
images
📄
index.php
(2.27 KB)
📄
indexx.php
(75.25 KB)
📁
lib
📄
oce.zip
(106.17 MB)
📄
payment.php
(6.79 KB)
📄
payment_submit.php
(15.1 KB)
📄
payment_verify.php
(2.31 KB)
📁
qrcodes
📄
room-service.php
(8.98 KB)
📄
search_videos.php
(1.76 KB)
📄
services.php
(14.04 KB)
📄
success.php
(2.06 KB)
📄
test_mailer.php
(372 B)
📄
thank-you.php
(1.28 KB)
📁
uploads
📄
videos.php
(6.87 KB)
Editing: payment_verify.php
<?php // Simple confirmation page with better UI $tx = isset($_GET['ref']) ? trim($_GET['ref']) : (isset($_POST['transaction_id']) ? trim($_POST['transaction_id']) : ''); $id = isset($_GET['id']) ? intval($_GET['id']) : (isset($_POST['payment_id']) ? intval($_POST['payment_id']) : 0); ?> <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Payment Submitted</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Bootstrap --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"> <!-- Icons --> <link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css" rel="stylesheet"> <style> body { background: linear-gradient(135deg, #f8f9fa, #e9f5ff); font-family: 'Segoe UI', sans-serif; } .card { border-radius: 20px; overflow: hidden; animation: fadeIn 0.6s ease-in-out; } .icon-success { font-size: 3rem; color: #28a745; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .btn-custom { border-radius: 30px; padding: 10px 20px; } </style> </head> <body> <div class="container py-5"> <div class="col-md-6 mx-auto"> <div class="card shadow-lg border-0 p-4 text-center"> <div class="mb-3"> <i class="bi bi-check-circle-fill icon-success"></i> </div> <h3 class="text-success fw-bold">Payment Successful!</h3> <p class="text-muted">Your transaction has been submitted successfully.</p> <?php if ($tx): ?> <p><span class="fw-semibold">Reference:</span> <?= htmlspecialchars($tx) ?></p> <?php endif; ?> <?php if ($id): ?> <p><span class="fw-semibold">Payment ID:</span> <?= intval($id) ?></p> <?php endif; ?> <div class="mt-4 d-flex justify-content-center gap-3"> <a class="btn btn-primary btn-custom" href="index.php"> <i class="bi bi-house-door-fill"></i> Go Home </a> <a class="btn btn-outline-success btn-custom" href="contact-us.php"> <i class="bi bi-headset"></i> Contact Support </a> </div> </div> </div> </div> </body> </html>
Upload File
Create Folder