| Server IP : 3.111.61.48 / Your IP : 216.73.216.67 Web Server : Apache System : Linux ip-10-0-5-176 6.8.0-1057-aws #60~22.04.1-Ubuntu SMP Wed May 27 08:16:59 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.2.31 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/vhost/gyaniguru.org/ |
Upload File : |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You - Gyani Guru</title>
<style>
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(to right, #00c6ff, #0072ff);
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: white;
}
.container {
background: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
text-align: center;
max-width: 500px;
width: 100%;
}
.container h1 {
font-size: 2.5rem;
color: #0072ff;
margin-bottom: 20px;
}
.container p {
font-size: 1.2rem;
color: #333;
margin-bottom: 20px;
}
.details {
font-size: 1.1rem;
color: #0072ff;
margin: 10px 0;
font-weight: bold;
}
.btn {
display: inline-block;
margin-top: 20px;
padding: 12px 25px;
background-color: #0072ff;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 1rem;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #005bb5;
}
.whatsapp-link {
margin-top: 20px;
font-size: 1rem;
}
.whatsapp-link a {
color: #25D366;
font-weight: bold;
text-decoration: none;
}
.whatsapp-link a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Thank You for Your Payment!</h1>
<p>Your registration is now complete. We're excited to have you on board!</p>
<p class="details">Payment ID: <span id="paymentId"></span></p>
<p class="details">Amount Paid: ₹<span id="amountPaid"></span></p>
<a href="/" class="btn">Go to Home Page</a>
<div class="whatsapp-link">
<p>Join our WhatsApp group for updates:</p>
<a id="whatsappLink" href="#" target="_blank">Join WhatsApp Group</a>
</div>
</div>
<script>
// Get payment details from URL parameters
const urlParams = new URLSearchParams(window.location.search);
const paymentId = urlParams.get("payment_id");
const amountPaid = urlParams.get("amount");
const groupId = urlParams.get("group_id");
// Set payment details
document.getElementById("paymentId").textContent = paymentId;
document.getElementById("amountPaid").textContent = amountPaid;
// Define WhatsApp group links based on group_id
const groupLinks = {
"1": "https://chat.whatsapp.com/FhArPToBmIdHJm9PmqcPze",
"2": "https://chat.whatsapp.com/DuxKoOX5Cyo7N4WdCC9Tln",
"3": "https://chat.whatsapp.com/FewJvo9t2fFLoY7iDrhU2D"
};
// Set the correct WhatsApp link
document.getElementById("whatsappLink").href = groupLinks[groupId] || groupLinks["1"];
</script>
</body>
</html>