-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2ofm-wheel.html
61 lines (50 loc) · 1.57 KB
/
2ofm-wheel.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!doctype html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>2-of-M Wheel</title>
<link rel="stylesheet" href="./styles/index.css" />
</head>
<script type="module">
import "./sdk/framework.js"
import "./sdk/layout/all.js"
import "./sdk/penlock-bip39.js"
import "./sdk/wheel/wheel-sheet.js"
</script>
<penlock-header
image="./assets/derive.png"
title="2-of-M Wheel"
></penlock-header>
<section class="notes">
<section class="card">
<img class="circled" src="./icons/lightbulb.svg" />
<h3>Recommendations</h3>
<ul>
<li>Print on thick paper, such as photo paper.</li>
</ul>
<print-me></print-me>
</section>
<section class="card">
<h3>Assembly</h3>
<ol>
<li>Cut out each disk.</li>
<li>
For 2-of-3 splitting (recommended), cut out the 3 white windows
on the colored disk.
</li>
<li>For 2-of-M splitting, cut out all of the numbered windows.</li>
<li>
On both disks, cut two slits along the lines of the central
cross.
</li>
<li>
Attach the disks together using a split pin through the central
cross. (The colored disk goes on top.)
</li>
</ol>
</section>
</section>
<section class="print">
<wheel-sheet name="2-of-M" background="./assets/derive.png"></wheel-sheet>
</section>
<penlock-footer></penlock-footer>