Browse Source

Flesh out website layout

pull/1/head
Luke Childs 6 years ago
parent
commit
ebfd693adb
  1. 360
      website/doge.svg
  2. BIN
      website/favicon.png
  3. 25
      website/index.html

360
website/doge.svg

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 129 KiB

BIN
website/favicon.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

25
website/index.html

@ -1,8 +1,29 @@
<html> <html>
<body> <head>
<title>Doge Seed</title>
<link rel="shortcut icon" href="favicon.png">
<meta name="description" content="Dank mnemonic seed phrases."/>
</head>
<body>
<header>
<h1>Doge Seed</h1>
<h2>very entropy, such secure</h2>
<img src="doge.svg" width="256" alt="Shiba Inu"/>
<h3>Dank mnemonic seed phrases.</h3>
</header>
<section class="generator">
<div class="seed-text"></div> <div class="seed-text"></div>
<input class="bits" type="range" min="128" max="256" step="32" value="256" /> <input class="bits" type="range" min="128" max="256" step="32" value="256" />
<button class="generate-seed" type="button">Generate Seed</button> <button class="generate-seed" type="button">Generate Seed</button>
</section>
<section class="description">
<h4>Wut?</h4>
<p><strong>Cryptographically secure</strong> mnemonic seed phrases with added dankness. The first four words will be a randomly generated Doge-like sentence.</p>
<p>The seed phrases are <strong>fully valid checksummed BIP39 seeds</strong>. They can be used with any cryptocurrency and can be imported into any BIP39 compliant wallet.</p>
</section>
<script async src="./index.js"></script> <script async src="./index.js"></script>
</body> </body>
</html> </html>

Loading…
Cancel
Save