-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
28 lines (27 loc) · 1.15 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bitaxe Viewer</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="header">
<img src="img/bitaxe_light.png" alt="Bitaxe" class="logo">
<h1 class="viewer-text">Viewer</h1>
</div>
<div id="networkDisplay" class="network-display"></div>
<button id="scan-button" class="scan-button">Scan for Bitaxe devices</button>
<div id="results" class="results"></div>
</div>
<script src="popup.js"></script>
<div class="image-container">
<button id="donate-button" class="submit" style="min-width:209px;min-height:57px;border-radius:4px;border-style:none;background-color:#0f3b21;cursor:pointer;" title="Donate to keep this project up to date">
<span style="color:#fff">Donate</span>
<img src="https://btcpay.wantclue.de/img/paybutton/logo.svg" style="height:57px;display:inline-block;padding:5% 0 5% 5px;vertical-align:middle;">
</button>
</div>
</body>
</html>