-
Notifications
You must be signed in to change notification settings - Fork 0
/
2ofm-worksheet2.html
114 lines (97 loc) · 2.91 KB
/
2ofm-worksheet2.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!doctype html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>2-of-M Split / Worksheet</title>
<link rel="stylesheet" href="./styles/index.css" />
</head>
<script type="module">
import "./sdk/framework.js"
import "./sdk/layout/all.js"
import "./sdk/worksheet/share-section.js"
</script>
<style>
section.sheet {
flex-direction: row-reverse;
}
section.sheet > h3 {
writing-mode: vertical-rl;
margin: 0 0 0 1em;
text-align: center;
}
section.column {
justify-content: space-evenly;
}
</style>
<penlock-header
image="./assets/derive.png"
subtitle="Split a Seed Phrase (2-of-M)"
title="Worksheet"
></penlock-header>
<section class="notes">
<section class="card">
<img class="circled" src="./icons/lightbulb.svg" />
<h3>Recommendations</h3>
<ul>
<li>Print one-sided on normal printer paper.</li>
<li>Print one copy of the "Base Worksheet".</li>
<li>
Print one or several copies of the "Additional Worksheet",
depending on how many shares are needed.
</li>
</ul>
<print-me></print-me>
</section>
</section>
<section class="print">
<section class="sheet landscape row">
<h3>Split a Seed Phrase (2-of-M) / Base Worksheet 1</h3>
<section class="column">
<share-section
header="Secret"
footer="Cut & burn once done"
></share-section>
<share-section
header="Share A"
scheme="2-of-__"
prompt="Group:"
></share-section>
</section>
</section>
<section class="sheet landscape row">
<h3>Split a Seed Phrase (2-of-M) / Base Worksheet 2</h3>
<section class="column">
<share-section
header="Share B"
scheme="2-of-__"
prompt="Group:"
></share-section>
<share-section
header="Share C"
scheme="2-of-__"
prompt="Group:"
></share-section>
</section>
</section>
<section class="sheet landscape row">
<h3>Split a Seed Phrase (2-of-M) / Additional Worksheet</h3>
<section class="column">
<share-section
header="Share __"
scheme="2-of-__"
prompt="Group:"
></share-section>
<share-section
header="Share __"
scheme="2-of-__"
prompt="Group:"
></share-section>
<share-section
header="Share __"
scheme="2-of-__"
prompt="Group:"
></share-section>
</section>
</section>
</section>
<penlock-footer></penlock-footer>