mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
21 lines
416 B
HTML
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>
|