Book Your 40‑Minute Consultation – ₹999
Your Name:
Date of Birth:
Time of Birth:
Place of Birth:
Pay & Book Now
https://checkout.razorpay.com/v1/checkout.js
function startBooking(e) {
e.preventDefault();
var name = document.getElementById(“cust_name”).value;
var dob = document.getElementById(“dob”).value;
var tob = document.getElementById(“tob”).value;
var pob = document.getElementById(“pob”).value;
var options = {
“key”: “https://rzp.io/rzp/EOyFs3P”, // ← replace with your Razorpay Key ID
“amount”: 99900, // ₹999 in paise
“currency”: “INR”,
“name”: “Astro Vedangam”,
“description”: “40‑Min Consultation”,
“handler”: function (response){
var msg =
`Hi, I’ve booked a 40‑min consultation.\n` +
`Name: ${name}\n` +
`DOB: ${dob}\n` +
`Time of Birth: ${tob}\n` +
`Place of Birth: ${pob}\n` +
`Payment ID: ${response.razorpay_payment_id}`;
window.location.href =
“https://wa.me/919773565399?text=” + encodeURIComponent(msg);
},
“prefill”: { “name”: name },
“theme”: { “color”: “#6E5BD8” }
};
new Razorpay(options).open();
return false;
}
