-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (83 loc) · 4.14 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" href="assets/icons/icon-512x512.png"></link>
<link rel="shortcut icon" type="image/jpg" href="assets/icons/icon-512x512.png" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="theme-color" content="#222222">
<meta name="viewport" content= "width=device-width, user-scalable=no">
<link rel="icon" href="favicon.ico">
<link rel="manifest" href="manifest.json">
<script src="index.js" defer></script>
<link rel="stylesheet" href="style.css">
<title>AlphVue</title>
</head>
<body>
<div class="container mt-2" id="app">
<div class="d-flex justify-content-end">
<button class="btn btn-transparent p-0" id="settings-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" fill="white" class="bi bi-sliders"
viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M11.5 2a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM9.05 3a2.5 2.5 0 0 1 4.9 0H16v1h-2.05a2.5 2.5 0 0 1-4.9 0H0V3h9.05zM4.5 7a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zM2.05 8a2.5 2.5 0 0 1 4.9 0H16v1H6.95a2.5 2.5 0 0 1-4.9 0H0V8h2.05zm9.45 4a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm-2.45 1a2.5 2.5 0 0 1 4.9 0H16v1h-2.05a2.5 2.5 0 0 1-4.9 0H0v-1h9.05z" />
</svg>
</button>
</div>
<p class="fw-bold mb-0 display-1 text-center" id="alph_amount_text">Loading</p>
<p class="fw-bold mb-5 text-center" id="dollar_amount_text">Loading</p>
<p class="lead fw-bold text-center" id="recent_transactions_text">Recent Transactions</p>
<div id="transactions_container">
<div class="card mb-3 loading-gradient">
<div class="card-body">
<p><br><br></p>
</div>
</div>
<div class="card mb-3 loading-gradient">
<div class="card-body">
<p><br><br></p>
</div>
</div>
<div class="card mb-3 loading-gradient">
<div class="card-body">
<p><br><br></p>
</div>
</div>
</div>
</div>
<div id="settings-popup">
<p class="text-center mb-0 fw-bold">Settings</p>
<input type="text" id="settings-popup-wallet-field" placeholder="Enter your wallet address...">
<p class="text-center"><a href="https://explorer.alephium.org/#/addresses/13mXyQYGH8cR4hjS3qkwPoN8XUJoibGdTj6ev8SbT8vC4" id="explorer_link" class="link-light">Open Address In Explorer</a></p>
<button id="settings-popup-confirm-btn">Confirm</button>
<button id="settings-popup-close-btn">Close</button>
</div>
<div id="wallet-reminder">
Enter A Wallet Address
</div>
<script src="index.umd.min.js"></script>
<script>
PullToRefresh.init({
mainElement: '#app',
onRefresh: function (done) {
done()
location.reload()
}
})
</script>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="bootstrap.bundle.min.js"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
-->
</body>
</html>