-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<title>iSunCoin</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<div class="main">
<h1>錢包地址</h1>
<input type="text" id="address" placeholder="輸入挖礦獎勵錢包地址">
<button id="start-mining" onClick="startMining()" class="start"><i class="fas fa-play"></i> 啟動挖礦</button>
<button id="stop-mining" onClick="stopMining()" class="stop hide"><i class="fas fa-pause"></i> 停止挖礦</button>
<button onClick="reset()" type="reset" class="reset"><i class="fas fa-undo"></i></button>
<div id="message">iSunCoin 初始化</div>
<textarea id="log" rows="20" readonly></textarea>
</div>
<div class="sub">
<h2 id="balance">--</h2>
<h4>ISC</h4>
</div>
<div class="sub cp">
<h4>算力:</h2>
<h4 id="computing-power">--</h2>
<h4>SUNS</h4>
</div>
<div class="version">
<!-- get version number from package.json -->
iSunCoin <span id="version">載入中</div>
</div>
<script src="renderer.js"></script>
</body>
</html>