btcpayserver/BTCPayServer/wwwroot/tests/index.html
2020-02-19 17:39:14 +09:00

21 lines
416 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.showInvoice(myParam);
}
</script>
</head>
<body>
</body>
</html>