2026-06-25 10:52:06 +08:00

44 lines
2.9 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
<meta name="robots" content="noindex,nofollow">
<title>100 USD India Paytm</title>
<style>
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; background: #f6f7fb; color: #17202a; display: flex; align-items: center; justify-content: center; padding: 24px; }
main { width: min(100%, 420px); background: #fff; border: 1px solid #e8ebf2; border-radius: 8px; padding: 22px; box-shadow: 0 10px 24px rgba(15, 23, 42, .08); }
h1 { margin: 0 0 16px; font-size: 21px; line-height: 1.25; }
.amount { font-size: 30px; font-weight: 700; margin: 10px 0 4px; }
.sub { color: #5f6b7a; margin: 0 0 18px; }
dl { margin: 0 0 18px; display: grid; grid-template-columns: 112px 1fr; gap: 10px 8px; font-size: 14px; }
dt { color: #657285; }
dd { margin: 0; word-break: break-all; }
button, a.button { width: 100%; border: 0; border-radius: 7px; background: #14d8aa; color: #06251d; font-weight: 700; font-size: 17px; padding: 14px 16px; text-align: center; text-decoration: none; display: block; cursor: pointer; }
.hint { margin: 14px 0 0; font-size: 13px; color: #667085; line-height: 1.45; }
textarea { width: 100%; min-height: 88px; margin-top: 12px; border: 1px solid #d9dee8; border-radius: 6px; padding: 10px; font-size: 12px; color: #344054; }
</style>
</head>
<body>
<main>
<h1>Paytm Payment</h1>
<div class="amount">100 USD</div>
<p class="sub">India · INR 9,494.00</p>
<dl>
<dt>Merchant order</dt><dd>1782355678910535160</dd>
<dt>MiFaPay order</dt><dd>h788uve3x00289mqswjw0e0A10001910</dd>
<dt>Channel</dt><dd>Ewallet_Paytm</dd>
</dl>
<a class="button" id="payButton" href="paytmmp://pay?pa=DizisayesSolut362533.airpay@rbl&amp;pn=Dizisayes+Solution+Private+Limited&amp;cu=INR&amp;tn=Pay+to+Dizisayes+Solution+Private+Limited&amp;am=9494.00&amp;mc=7392&amp;mode=04&amp;tr=AIRPAY1969333823">Open Paytm</a>
<p class="hint">If the app does not open automatically, tap the button above on an Android phone with Paytm installed.</p>
<textarea readonly>paytmmp://pay?pa=DizisayesSolut362533.airpay@rbl&amp;pn=Dizisayes+Solution+Private+Limited&amp;cu=INR&amp;tn=Pay+to+Dizisayes+Solution+Private+Limited&amp;am=9494.00&amp;mc=7392&amp;mode=04&amp;tr=AIRPAY1969333823</textarea>
</main>
<script>
const payUrl = "paytmmp://pay?pa=DizisayesSolut362533.airpay@rbl&pn=Dizisayes+Solution+Private+Limited&cu=INR&tn=Pay+to+Dizisayes+Solution+Private+Limited&am=9494.00&mc=7392&mode=04&tr=AIRPAY1969333823";
document.getElementById("payButton").addEventListener("click", function () { window.location.href = payUrl; });
setTimeout(function () { window.location.href = payUrl; }, 600);
</script>
</body>
</html>