damus.io

damus.io website
git clone git://jb55.com/damus.io
Log | Files | Refs | README | LICENSE

index.html (1521B)


      1 
      2 <!DOCTYPE html>
      3 <html lang="en">
      4     <head>
      5         <meta charset="utf-8">
      6         <title>damus key converter</title>
      7         <meta name="viewport" content="width=device-width, initial-scale=1">
      8 
      9         <meta property="og:title" content="Damus">
     10         <meta property="og:description" content="A new social network that you control">
     11         <meta property="og:image" content="https://damus.io/img/logo.png">
     12         <meta property="og:url" content="https://damus.io">
     13         <meta name="twitter:card" content="summary_large_image">
     14 
     15         <link rel="stylesheet" href="/css/normalize.css">
     16         <link rel="stylesheet" href="/css/skeleton.css?v=3">
     17         <link rel="stylesheet" href="/css/custom.css?v=4">
     18 
     19     </head>
     20     <body>
     21 	<section class="header">
     22 		<span class="logo">
     23 			<img src="/img/damus-nobg.svg"/>
     24 		</span>
     25 
     26 		<span class="damus">damus</span>
     27 
     28 	</section>
     29 
     30 
     31 	<div class="container">
     32 		<h1>Key Converter</h2>
     33 		<p>Convert a damus key to an old-style hex key</p>
     34 	      <label for="bech32">damus key</label>
     35 	      <input type="text" class="u-full-width" placeholder="npub... OR nsec..." id="damus-key">
     36 
     37 	      <label for="bech32">hex key</label>
     38 	      <input type="text" class="u-full-width" placeholder="" id="hex-key">
     39 
     40 	      <div>
     41 		      <h2>Links</h2>
     42 		      <a id="note-link" href="">Damus Note Link</a><br/>
     43 		      <a id="profile-link" href="">Damus Profile Link</a>
     44 	      </div>
     45 	</div>
     46 
     47 	<script src="bech32.js" ></script>
     48 	<script src="key.js?v=3" ></script>
     49     </body>
     50 </html>