:: **Zploit** v1.0 | Current Path: **/home/kreativepixelz/www/demo/soulmeetvivah.com/**
:: Editing File: success.php
<?php // Example: Capture GET params (token, orderid, moid) $token = $_GET['token'] ?? ''; $orderid = $_GET['orderid'] ?? ''; $moid = $_GET['moid'] ?? ''; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Payment Successful - Soulmeet Vivah</title> <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet"> <style> body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; background: linear-gradient(135deg, #f0fff4, #e6fffa); display: flex; justify-content: center; align-items: center; min-height: 100vh; } .success-card { background: #fff; border-radius: 15px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); text-align: center; padding: 40px 30px; max-width: 500px; width: 100%; animation: fadeIn 0.8s ease-in-out; } .checkmark { font-size: 70px; color: #38a169; margin-bottom: 20px; animation: pop 0.5s ease-in-out; } h1 { color: #2d3748; margin-bottom: 15px; font-size: 28px; } p { color: #4a5568; margin-bottom: 25px; font-size: 16px; } .details { text-align: left; background: #f7fafc; padding: 15px 20px; border-radius: 10px; margin-bottom: 25px; } .details p { margin: 5px 0; font-size: 15px; } .btn { display: inline-block; padding: 12px 25px; border-radius: 8px; background: #38a169; color: #fff; font-weight: 600; text-decoration: none; transition: 0.3s; } .btn:hover { background: #2f855a; } @keyframes fadeIn { from {opacity: 0; transform: translateY(20px);} to {opacity: 1; transform: translateY(0);} } @keyframes pop { 0% {transform: scale(0.5);} 100% {transform: scale(1);} } </style> </head> <body> <div class="success-card"> <div class="checkmark">✔</div> <h1>Payment Successful!</h1> <p>Thank you for your payment. Your transaction has been completed successfully.</p> <div class="details"> <p><strong>Transaction Token:</strong> <?= htmlspecialchars($token) ?></p> <p><strong>Order ID:</strong> <?= htmlspecialchars($orderid) ?></p> <p><strong>Merchant Order ID:</strong> <?= htmlspecialchars($moid) ?></p> </div> <a href="https://soulmeetvivah.com/login" class="btn">Go to Dashboard</a> </div> </body> </html>