-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
58 lines (52 loc) · 2.31 KB
/
Copy pathpopup.html
File metadata and controls
58 lines (52 loc) · 2.31 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
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
<!--
SPDX-FileCopyrightText: 2026 Foundation Devices, Inc. <hello@foundation.xyz>
SPDX-License-Identifier: GPL-3.0-or-later
-->
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Nostr Signer</title>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<header>
<div class="brand">
<div class="logo" aria-hidden="true">
<svg viewBox="0 0 24 24" width="20" height="20">
<path
fill="currentColor"
d="M21 10h-8.35A5.99 5.99 0 0 0 7 6c-3.31 0-6 2.69-6 6s2.69 6 6 6a5.99 5.99 0 0 0 5.65-4H13l2 2 2-2 2 2 4-4.04L21 10zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z"
/>
</svg>
</div>
<div class="title">Nostr Signer</div>
</div>
<button id="openOptions" class="icon-btn" title="Advanced settings" aria-label="Advanced settings">
<svg viewBox="0 0 24 24" width="18" height="18">
<path
fill="currentColor"
d="M19.14 12.94c.04-.31.06-.63.06-.94 0-.31-.02-.63-.06-.94l2.03-1.58a.5.5 0 0 0 .12-.64l-1.92-3.32a.5.5 0 0 0-.6-.22l-2.39.96a7.04 7.04 0 0 0-1.62-.94l-.36-2.54a.5.5 0 0 0-.5-.42h-3.84a.5.5 0 0 0-.5.42l-.36 2.54a7.04 7.04 0 0 0-1.62.94l-2.39-.96a.5.5 0 0 0-.6.22L2.71 8.84a.5.5 0 0 0 .12.64l2.03 1.58a7.07 7.07 0 0 0 0 1.88L2.83 14.52a.5.5 0 0 0-.12.64l1.92 3.32a.5.5 0 0 0 .6.22l2.39-.96c.49.38 1.03.7 1.62.94l.36 2.54a.5.5 0 0 0 .5.42h3.84a.5.5 0 0 0 .5-.42l.36-2.54a7.04 7.04 0 0 0 1.62-.94l2.39.96a.5.5 0 0 0 .6-.22l1.92-3.32a.5.5 0 0 0-.12-.64l-2.03-1.58ZM12 15.5A3.5 3.5 0 1 1 12 8.5a3.5 3.5 0 0 1 0 7Z"
/>
</svg>
</button>
</header>
<div id="status-pill" class="pill pill-pending">
<span class="dot"></span>
<span id="status">Connecting</span>
</div>
<div id="selected" class="selected"></div>
<div id="origins" class="origins"></div>
<ul id="keys"></ul>
<button id="pair" class="primary" type="button" hidden>
<svg viewBox="0 0 24 24" width="18" height="18">
<path
fill="currentColor"
d="M11 17H7A5 5 0 0 1 7 7h4v2H7a3 3 0 0 0 0 6h4v2Zm2-10h4a5 5 0 0 1 0 10h-4v-2h4a3 3 0 0 0 0-6h-4V7Zm-4 4h6v2H9v-2Z"
/>
</svg>
<span>Connect Passport Prime</span>
</button>
<script src="popup.js" type="module"></script>
</body>
</html>