quantumpay-demo / confirmation.html
jhgtfrdefghj's picture
make the procced button forward you to another page and make the website when you enter the wallet show the full amount you will get
b7d6890 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QuantumPay - Confirmation</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body class="bg-gray-900 text-white font-sans">
<!-- Demo Banner -->
<div class="bg-purple-900 text-center py-2 text-sm">
Demo only β€” simulated flow. No real funds move here.
</div>
<!-- Main Container -->
<div class="max-w-4xl mx-auto px-4 py-10">
<!-- Header -->
<header class="text-center mb-12">
<div class="flex justify-center items-center mb-4">
<div class="w-10 h-10 rounded-full bg-gradient-to-r from-cyan-400 to-purple-500 flex items-center justify-center mr-3">
<i data-feather="check-circle" class="text-white"></i>
</div>
<h1 class="text-4xl md:text-5xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-cyan-400 to-purple-500">
Payment Confirmation
</h1>
</div>
<p class="text-lg text-gray-300 max-w-2xl mx-auto">
Review your transaction details before proceeding
</p>
</header>
<!-- Confirmation Card -->
<div class="bg-gray-800/50 backdrop-blur-lg rounded-xl border border-gray-700 p-8 shadow-xl mb-8">
<div class="text-center mb-8">
<div class="w-16 h-16 bg-green-500/20 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="check" class="text-green-400" width="32" height="32"></i>
</div>
<h2 class="text-2xl font-bold mb-2">Transaction Details</h2>
<p class="text-gray-400">Please review the information below</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
<div class="bg-gray-700/50 rounded-lg p-6">
<h3 class="text-sm text-gray-400 mb-2">Amount to Send</h3>
<p id="sendAmount" class="text-3xl font-bold text-cyan-300">$0</p>
<p id="sendCurrency" class="text-lg mt-1">-</p>
</div>
<div class="bg-gray-700/50 rounded-lg p-6">
<h3 class="text-sm text-gray-400 mb-2">You Will Receive</h3>
<p id="receiveAmount" class="text-3xl font-bold text-green-400">$0</p>
<p id="receiveCurrency" class="text-lg mt-1">USD</p>
</div>
</div>
<div class="border-t border-gray-700 pt-6">
<h3 class="text-lg font-semibold mb-4">Transaction Summary</h3>
<div class="space-y-3">
<div class="flex justify-between">
<span class="text-gray-400">Selected Amount:</span>
<span id="summaryAmount">$0</span>
</div>
<div class="flex justify-between">
<span class="text-gray-400">Currency:</span>
<span id="summaryCurrency">-</span>
</div>
<div class="flex justify-between">
<span class="text-gray-400">Exchange Rate:</span>
<span id="exchangeRate">1 USD = 1 USD</span>
</div>
<div class="flex justify-between pt-3 border-t border-gray-700">
<span class="font-semibold">Total to Receive:</span>
<span id="totalReceive" class="font-bold text-green-400">$0</span>
</div>
</div>
</div>
</div>
<!-- Action Buttons -->
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="index.html" class="px-6 py-3 bg-gray-700 hover:bg-gray-600 rounded-lg font-medium text-center transition-colors">
Back to Checkout
</a>
<button id="confirmPayment" class="px-6 py-3 bg-gradient-to-r from-green-500 to-teal-500 rounded-lg font-medium hover:opacity-90 transition-opacity">
Confirm Payment
</button>
</div>
<!-- Footer -->
<footer class="mt-12 pt-6 border-t border-gray-800 text-center text-sm text-gray-500">
<div class="flex justify-center space-x-6 mb-3">
<a href="#" class="hover:text-cyan-400 transition-colors">Terms</a>
<a href="#" class="hover:text-cyan-400 transition-colors">Privacy</a>
<a href="#" class="hover:text-cyan-400 transition-colors">Contact</a>
</div>
<p>This interface is a demo. No financial, investment, or gambling services are provided.</p>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="confirmation.js"></script>
<script>
feather.replace();
</script>
</body>
</html>