btcpayserver/BTCPayServer/wwwroot/tests/index.html
2022-09-09 13:49:24 +02:00

21 lines
423 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="../modal/btcpay.js"></script>
<script>
window.onload = function(){
const urlParams = new URLSearchParams(window.location.search);
const myParam = urlParams.get('invoice');
btcpay.appendInvoiceFrame(myParam);
}
</script>
</head>
<body>
</body>
</html>