-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (25 loc) · 863 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>damus key converter</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/normalize.css">
<link rel="stylesheet" href="/css/skeleton.css?v=3">
<link rel="stylesheet" href="/css/custom.css?v=4">
</head>
<body>
<section class="header">
</section>
<div class="container">
<h1>Damus Key Converter</h2>
<p>Convert a damus key to an old-style hex key</p>
<label for="bech32">damus key</label>
<input type="text" class="u-full-width" placeholder="npub... OR nsec..." id="damus-key">
<label for="bech32">hex key</label>
<input type="text" class="u-full-width" placeholder="" id="hex-key">
</div>
<script src="bech32.js"></script>
<script src="key.js"></script>
</body>
</html>