-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrecover.html
More file actions
31 lines (27 loc) · 1.11 KB
/
recover.html
File metadata and controls
31 lines (27 loc) · 1.11 KB
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
<!doctype html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Penlock / Recover a Seed Phrase</title>
<meta
name="description"
content="Recover a seed phrase by combining 2 Penlock shares belonging to the same set."
/>
<meta name="twitter:card" content="summary_large_image" />
<meta
property="og:image"
content="https://v1.penlock.io/images/background.jpg"
/>
<meta property="og:image:height" content="1280" />
<meta property="og:image:width" content="1280" />
<link rel="canonical" href="https://v1.penlock.io/en/recover" />
<script>
const languages = ["en", "ko"]
const preferred = (navigator.language || "en").substring(0, 2)
const selected = languages.includes(preferred) ? preferred : "en"
window.location.replace(`/${selected}/recover.html`)
</script>
<meta http-equiv="refresh" content="0; url=/en/recover.html" />
</head>
If you are not redirected automatically,
<a href="https://v1.penlock.io/en/recover.html">please follow this link</a>.