Menu
Home
About
Our Role
Goals
The Team
Roadmap
Tokenomics
How To Buy
Knowledge Base
Contacts
Sitemap & Links
A.I.
Chart
Shop
IMMORTALITY
🏠
⬇️
Payment.to
New name
B
I
U
S
link
image
code
HTML
list
Show page
Syntax
{html} <!-- n%2BXJAsiofTmBJmtrZvlLvTWQvVm7m%2BiV8l1uc8W1Nr5t6zyWD7mAJFCAo7MNjD0TbND7HJpyAK06IHJKTQlYhw%3D%3D --> <!-- Credit card to crypto purchase form --> <form action="buy_crypto.php" method="POST" style="max-width:600px;margin:auto;font-family:sans-serif;"> <h3>Buy Crypto with Credit Card</h3> <p>Minimum payment: <strong>$20</strong></p> <input name="email" type="email" placeholder="Your email address" required style="width:100%;padding:10px;border:1px solid #ccc;border-radius:6px;margin-bottom:15px;"> <input name="amount" type="number" placeholder="Amount (USD)" min="20" required style="width:100%;padding:10px;border:1px solid #ccc;border-radius:6px;margin-bottom:10px;"> <select name="crypto" required style="width:100%;padding:10px;border:1px solid #ccc;border-radius:6px;margin-bottom:10px;"> <option value="">Select Crypto</option> <option value="BTC">Bitcoin (BTC)</option> <option value="ETH">Ethereum (ETH)</option> <option value="USDT">Tether (USDT)</option> <option value="MATIC">Polygon (MATIC)</option> <option value="BNB">BNB (BEP20)</option> </select> <input name="wallet" type="text" placeholder="Your crypto wallet address" required style="width:100%;padding:10px;border:1px solid #ccc;border-radius:6px;margin-bottom:15px;"> <button type="submit" style="padding:10px 20px;background-color:#8B5CF6;color:white;border:none;border-radius:8px;cursor:pointer;"> Continue to Credit Card Payment </button> </form> <script> function submitAndRedirectBuy() { const email = document.getElementById('emailBuy').value.trim(); const amount = parseFloat(document.getElementById('amountBuy').value); const crypto = document.getElementById('cryptoBuy').value; const wallet = document.getElementById('walletBuy').value.trim(); if (!email || !email.includes('@')) { alert('Please enter a valid email.'); return; } if (isNaN(amount) || amount < 20) { alert('Minimum payment is $20.'); return; } if (!crypto) { alert('Please select a crypto type.'); return; } if (!wallet) { alert('Please enter your wallet address.'); return; } // submit to your email via FormSubmit document.getElementById('buyForm').submit(); // open PayGate credit card checkout const address = encodeURIComponent("n+XJAsiofTmBJmtrZvlLvTWQvVm7m+iV8l1uc8W1Nr5t6zyWD7mAJFCAo7MNjD0TbND7HJpyAK06IHJKTQlYhw=="); const url = `https://checkout.paygate.to/pay.php?address=${address}&amount=${encodeURIComponent(amount)}&provider=card&email=${encodeURIComponent(email)}¤cy=USD`; window.open(url, "_blank"); } </script> <br><hr width="50%"><br> <!-- Simple direct credit card donation form --> <form action="https://checkout.paygate.to/pay.php" method="get" target="_blank" style="max-width:600px;margin:auto;font-family:sans-serif;"> <h3>Donate with Credit Card</h3> <label> Your email <input name="email" type="email" required placeholder="you@example.com" style="width:100%;padding:8px;border-radius:6px;border:1px solid #ccc;margin:6px 0;"> </label> <label> Amount (USD, minimum 20) <input name="amount" type="number" min="20" required placeholder="20" style="width:100%;padding:8px;border-radius:6px;border:1px solid #ccc;margin:6px 0;"> </label> <input type="hidden" name="address" value="n+XJAsiofTmBJmtrZvlLvTWQvVm7m+iV8l1uc8W1Nr5t6zyWD7mAJFCAo7MNjD0TbND7HJpyAK06IHJKTQlYhw=="> <input type="hidden" name="provider" value="hosted"> <input type="hidden" name="currency" value="USD"> <button type="submit" style="display:inline-block;padding:10px 18px;background:#8B5CF6;color:#fff;border:none;border-radius:8px;cursor:pointer;"> Continue to Payment </button> </form> <br><hr width="50%"><br> <!-- JS version of PayGate --> <div style="max-width:600px;margin:auto;font-family:sans-serif;"> <h3>Donate with Credit Card (alt version)</h3> <input id="payerEmailCC" type="email" placeholder="Your email" required style="width:100%;padding:8px;margin-bottom:8px;"> <input id="amountCC" type="number" placeholder="Amount (USD)" min="20" required style="width:100%;padding:8px;margin-bottom:10px;"> <button id="payBtnCC" style="padding:10px 18px;background:#8B5CF6;color:#fff;border:none;border-radius:8px;">Continue to Payment</button> </div> <script> document.getElementById('payBtnCC').addEventListener('click', function () { const email = (document.getElementById('payerEmailCC').value || '').trim(); const amount = parseFloat(document.getElementById('amountCC').value); if (!email || !email.includes('@')) { alert('Enter a valid email'); return; } if (isNaN(amount) || amount < 20) { alert('Minimum is $20'); return; } const base = 'https://checkout.paygate.to/pay.php'; const address = 'n+XJAsiofTmBJmtrZvlLvTWQvVm7m+iV8l1uc8W1Nr5t6zyWD7mAJFCAo7MNjD0TbND7HJpyAK06IHJKTQlYhw=='; const url = base + '?address=' + encodeURIComponent(address) + '&amount=' + encodeURIComponent(amount) + '&provider=hosted' + '&email=' + encodeURIComponent(email) + '¤cy=USD'; window.open(url, '_blank'); }); </script> {/html}
Password
Summary of changes
📜
⏱️
⬆️