-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwallet.html
46 lines (42 loc) · 2.03 KB
/
wallet.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
<h1>Hello, This's inti's wallet</h1>
<div class="input-group flex-nowrap">
<span class="input-group-text" id="addon-wrapping">Secret key</span>
<input
id="key"
type="password"
class="form-control"
placeholder="key"
aria-label="Password"
aria-describedby="addon-wrapping"
/>
</div>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text">Data</span>
</div>
<textarea id="data" class="form-control" aria-label="input"></textarea>
</div>
<div class="input-group mb-3">
<div class="input-group-prepend" id="button-addon3">
<button class="btn btn-outline-secondary" id="btn-ether" type="button">Ether Address</button>
<button class="btn btn-outline-secondary" id="btn-solana" type="button">Sol Address</button>
<button class="btn btn-outline-secondary" id="btn-sui" type="button">Sui Address</button>
</div>
</div>
<textarea id="result" style="height: 150px" class="form-control" aria-label="input"></textarea>
</body>
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
<script type="module" src="wallet.js"></script>
</html>