-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpayment.html
39 lines (39 loc) · 1.4 KB
/
payment.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
36
37
38
39
<html>
<head>
<title>LND Payment Validation</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/bootstrap-theme.min.css">
<script type="text/javascript" src="assets/js/jquery-3.2.1.slim.min.js"></script>
<script type="text/javascript" src="assets/js/bootstrap.min.js"></script>
<script type="text/javascript" src="utils.js"></script>
<script type="text/javascript" src="payment.js"></script>
</head>
<body>
<div class="container">
<div class="modal-header">
<h3 class="modal-title">LND Payment Validation</h3>
</div>
<div class="modal-body">
<dl class="dl-horizontal" style="overflow-wrap: break-word;">
<dt>Destination pub key</dt>
<dd><span id="payment-pubkey"> </span></dd>
<dt>Amount in satoshis</dt>
<dd><span id="payment-amount"> </span></dd>
<dt>Payment hash</dt>
<dd><span id="payment-hash"> </span></dd>
<dt>Payment request</dt>
<dd><span id="payment-request"> </span></dd>
</dl>
<div class="form-group">
<label for="payment-client">LND Web client</label>
<select class="form-control" id="webclient-select"></select>
</div>
</div>
<div class="modal-footer">
<button id="validate-button" class="btn btn-primary">Validate</button>
<button id="cancel-button" class="btn btn-warning">Cancel</button>
</div>
</div>
</body>
</html>