-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsignature.html
35 lines (35 loc) · 1.26 KB
/
signature.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
<html>
<head>
<title>LND Signature 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="signature.js"></script>
</head>
<body>
<div class="container">
<div class="modal-header">
<h3 class="modal-title">LND Signature Validation</h3>
</div>
<div class="modal-body">
<dl class="dl-horizontal" style="overflow-wrap: break-word;">
<dt>Message to sign</dt>
<dd><span id="signature-message"> </span></dd>
<dt>Message's signature</dt>
<dd><span id="signature-value"> </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>