+ You can deposit credit on your pixeldrain account with Bitcoin. We + support regular Bitcoin transactions and Lightning transactions. You + must pay the full amount as stated on the invoice, else your payment + will fail. +
+Created | +Amount | +Status | ++ |
{formatDate(row.time, true, true, false)} | ++ {#if row.status === "New" || row.status === "InvoiceCreated"} + New (waiting for payment) + {:else if row.status === "InvoiceProcessing"} + Payment received, waiting for confirmations + {:else if row.status === "InvoiceSettled"} + Paid + {:else if row.status === "InvoiceExpired"} + Expired + {:else} + {row.status} + {/if} + | ++ {#if row.status === "New" || row.status === "InvoiceCreated"} + + paid Pay + + {/if} + | +
Here is a log of all transactions on your account balance. @@ -169,4 +265,10 @@ onMount(() => { width: 100px; z-index: 1000; } +.checkout_form { + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; +}