| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <title>Import mavi · extension</title>
- <link rel="stylesheet" href="shared.css" />
- </head>
- <body class="page">
- <header class="head">
- <img class="logo" src="icons/48.png" width="36" height="36" alt="" />
- <div>
- <h1>Import mavi</h1>
- <p class="sub">Restore from recovery phrase</p>
- </div>
- </header>
- <p id="error" class="error" hidden></p>
- <section id="step-form">
- <p class="blurb">
- Paste 12 or 24 words. They never leave this browser extension
- unencrypted.
- </p>
- <label class="field"
- >Recovery phrase
- <textarea
- id="phrase"
- rows="4"
- spellcheck="false"
- autocomplete="off"
- placeholder="word1 word2 …"
- ></textarea>
- </label>
- <label class="field"
- >Password
- <div class="pw-row">
- <input id="pw1" type="password" autocomplete="new-password" />
- <button type="button" class="eye" data-eye="pw1" title="Show">👁</button>
- </div>
- </label>
- <label class="field"
- >Confirm password
- <div class="pw-row">
- <input id="pw2" type="password" autocomplete="new-password" />
- <button type="button" class="eye" data-eye="pw2" title="Show">👁</button>
- </div>
- </label>
- <button type="button" id="btn-import" class="primary">
- Import mavi wallet
- </button>
- </section>
- <section id="step-done" hidden>
- <p class="ok">Import complete — unlocked for this session.</p>
- <p class="label">Address</p>
- <p id="done-address" class="mono break"></p>
- </section>
- <script src="dist/import.js" type="module"></script>
- </body>
- </html>
|