-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (31 loc) · 1.13 KB
/
index.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
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<title>Bcat recovery</title>
<style>
label {
margin-top: 5px;
}
</style>
<script type="text/javascript" src="https://unpkg.com/[email protected]/bsv.min.js"></script>
<script src="https://www.moneybutton.com/moneybutton.js"></script>
</head>
<body>
<h2>Bcat recovery</h2>
<form style='display: flex; flex-direction: column; align-items: flex-start;'>
<label for='fileName'>File name: </label>
<input type='text' id='fileName'>
<label for='mimeType'>MIME type: </label>
<input type='text' id='mimeType' placeholder="e.g. image/jpeg">
<label for='encoding'>Encoding: </label>
<input type='text' id='encoding' placeholder='e.g. binary'>
<label for='txIds'>Transaction ids: </label>
<textarea id='txIds' cols="80" rows='10' placeholder="Paste any text here which has 64-digit hex strings, a regular expression will find and extract them"></textarea>
<button id='prepareButton' style='margin-top: 10px'>Prepare Money Button...</button>
</form>
<div id='bcat-money-button'>
</div>
<p id='txId'></p>
<script src='bcat-recovery.js'></script>
</body>
</html>