-
Notifications
You must be signed in to change notification settings - Fork 2
/
pay_sats.html
35 lines (34 loc) · 1.36 KB
/
pay_sats.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<title>Víte, že ...</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="./css/styles.css" />
<link rel="shortcut icon" type="image/png" href="images/bitcoin-black.png"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrious/4.0.2/qrious.min.js" type="text/javascript"></script>
<script src="js/menu.js" type="text/javascript"></script>
<script src="js/donate.js" type="text/javascript"></script>
<script src="js/qrcode.min.js" type="text/javascript"></script>
</head>
<body class="content">
<h1><a href="index.html">Víte, že... <span style="color:orange">Bitcoin</span></a></h1>
<hr />
<div id="navigation"></div>
<div style="text-align:center; margin: 0 auto; width:500px;">
<h2>Terminal
<h3>Lightning, On-chain</h3>
<label for="date">Zadej počet Kč:</label><br>
<input type="number" id="satspaynumberczk" min="1"><br><br>
<button id="genSatsPayButton" onclick="CallSatsPay()">Zaplatit</button>
<div id="myidlabel" style="display:none">Platba po Lightning Network</div>
<div id="myid"></div>
<div id="myid2label" style="display:none">Platba Bitcoinem</div>
<div id="myid2"></div>
</div>
<hr />
<footer id="footer"></footer>
<hr />
</div>
</body>
</html>