File Manager Lite
Dir:
/home/u540325668/domains/mccsociety.org/public_html/donation_usd
Upload
[..]
Crypto.php (1.32 KB)
Edit
Rename
Del
ccavRequestHandler.php (1.06 KB)
Edit
Rename
Del
ccavResponseHandler.php (1.4 KB)
Edit
Rename
Del
donate.htm (5.85 KB)
Edit
Rename
Del
jquery-1.7.2.js (92.62 KB)
Edit
Rename
Del
Edit: donate.htm
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Donate to Support Our NGO</title> <script src="https://cdn.tailwindcss.com"></script> <script> window.onload = function() { var d = new Date().getTime(); document.getElementById("tid").value = d; }; </script> </head> <body class="bg-gradient-to-br from-emerald-50 to-teal-100 min-h-screen flex items-center justify-center p-6"> <div class="bg-white rounded-2xl shadow-2xl w-full max-w-2xl p-8"> <!-- Header --> <div class="text-center mb-6"> <h1 class="text-3xl font-bold text-emerald-700">Support Our Cause 🌱</h1> <p class="text-gray-600 mt-2">Your donation helps us bring positive change to lives in need</p> </div> <!-- Form --> <form method="post" name="customerData" action="ccavRequestHandler.php" class="space-y-6"> <input type="hidden" name="tid" id="tid" /> <input type="hidden" name="merchant_id" value="114513" /> <input type="hidden" name="order_id" value="123654789" /> <input type="hidden" name="currency" value="USD" /> <input type="hidden" name="redirect_url" value="https://mccsociety.org/donation_usd/ccavResponseHandler.php" /> <input type="hidden" name="cancel_url" value="https://mccsociety.org/donation_usd/ccavResponseHandler.php" /> <input type="hidden" name="language" value="EN" /> <input type="hidden" name="integration_type" value="iframe_normal" /> <!-- Donation Info --> <div> <h2 class="text-lg font-semibold text-gray-700 mb-3">Donation Details</h2> <div class="grid grid-cols-1 md:grid-cols-2 gap-4"> <div class="md:col-span-2"> <label class="block text-sm font-medium text-gray-600">Donation Amount ($)</label> <input type="number" step="0.01" name="amount" value="" required class="w-full mt-1 px-3 py-2 border rounded-lg focus:ring-2 focus:ring-emerald-400" /> </div> </div> </div> <!-- Donor Info --> <div> <h2 class="text-lg font-semibold text-gray-700 mb-3">Your Information</h2> <div class="grid grid-cols-1 md:grid-cols-2 gap-4"> <div> <label class="block text-sm font-medium text-gray-600">Full Name</label> <input type="text" name="billing_name" value="" placeholder="Your Name" required class="w-full mt-1 px-3 py-2 border rounded-lg focus:ring-2 focus:ring-emerald-400" /> </div> <div> <label class="block text-sm font-medium text-gray-600">Email</label> <input type="email" name="billing_email" value="" placeholder="you@example.com" required class="w-full mt-1 px-3 py-2 border rounded-lg focus:ring-2 focus:ring-emerald-400" /> </div> <div class="md:col-span-2"> <label class="block text-sm font-medium text-gray-600">Address</label> <input type="text" name="billing_address" value="" placeholder="Street, Area, Landmark" class="w-full mt-1 px-3 py-2 border rounded-lg focus:ring-2 focus:ring-emerald-400" /> </div> <div> <label class="block text-sm font-medium text-gray-600">Mobile No</label> <input type="tel" name="billing_tel" value="" placeholder="9876543210" class="w-full mt-1 px-3 py-2 border rounded-lg focus:ring-2 focus:ring-emerald-400" /> </div> <div> <label class="block text-sm font-medium text-gray-600">Dristrict</label> <input type="text" name="billing_city" value="" placeholder="Your City" class="w-full mt-1 px-3 py-2 border rounded-lg focus:ring-2 focus:ring-emerald-400" /> </div> <div> <label class="block text-sm font-medium text-gray-600">State</label> <input type="tel" name="billing_state" value="" placeholder="" class="w-full mt-1 px-3 py-2 border rounded-lg focus:ring-2 focus:ring-emerald-400" /> </div> <div> <label class="block text-sm font-medium text-gray-600">ZIP Code</label> <input type="text" name="billing_zip" value="" placeholder="Postal Code" class="w-full mt-1 px-3 py-2 border rounded-lg focus:ring-2 focus:ring-emerald-400" /> </div> </div> </div> <!-- Shipping Info (optional, collapsible in real site) --> <div class="hidden"> <input type="text" name="delivery_name" value="" /> <input type="text" name="delivery_address" value="" /> <input type="text" name="delivery_city" value="" /> <input type="text" name="delivery_state" value="" /> <input type="text" name="delivery_zip" value="" /> <input type="text" name="delivery_country" value="" /> <input type="text" name="delivery_tel" value="" /> </div> <!-- Merchant Params --> <input type="hidden" name="merchant_param1" value="donation" /> <input type="hidden" name="merchant_param2" value="ngo" /> <input type="hidden" name="merchant_param3" value="support" /> <input type="hidden" name="merchant_param4" value="campaign" /> <input type="hidden" name="merchant_param5" value="helping-hand" /> <input type="hidden" name="promo_code" value="" /> <input type="hidden" name="customer_identifier" value="" /> <!-- Submit --> <div class="text-center"> <button type="submit" class="bg-emerald-600 hover:bg-emerald-700 text-white font-semibold px-6 py-3 rounded-xl shadow-lg transform hover:scale-105 transition"> Donate Securely 💚 </button> </div> </form> <!-- Footer --> <p class="text-xs text-gray-400 text-center mt-6"> Payments powered by CCAvenue | Every rupee counts towards a better tomorrow 🌍 </p> </div> </body> </html>
Simpan