forked from wanderwallet/Wander
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.08 KB
/
index.html
File metadata and controls
42 lines (38 loc) · 1.08 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
<!doctype html>
<html id="wanderConnectRoot">
<head>
<title>Wander Embedded Wallet</title>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="/assets/popup.css" />
</head>
<body>
<script>
document.documentElement.dataset.theme = new URLSearchParams(location.search).get("theme") || "system";
</script>
<div id="cover">
<svg id="spinner" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
<circle
cx="24"
cy="24"
fill="none"
r="20"
stroke-dasharray="80"
stroke-linecap="round"
stroke="currentColor"
stroke-width="3"></circle>
<circle
cx="24"
cy="24"
fill="none"
opacity="0.3"
r="20"
stroke-linecap="round"
stroke="currentColor"
stroke-width="3"></circle>
</svg>
</div>
<div id="root"></div>
<!-- <script type="text/javascript" src="/assets/popup.js"></script> -->
<script type="module" src="/src/iframe/main.tsx"></script>
</body>
</html>