-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·120 lines (102 loc) · 4.35 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
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://ldoge-wow.com/assets/img/logo.png">
<title>LiteDoge Web Miner</title>
<!-- Opengraph meta tags -->
<meta property="og:title" content="LiteDoge Web Miner">
<meta property="og:image" content="https://ldoge-wow.com/assets/img/logo.png">
<meta property="og:description" content="LiteDoge scrypt web miner with stratum support.">
<!-- Created by Shafil Alam for LiteDoge -->
<!-- Bootstrap core CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<!-- Custom CSS -->
<link href="assets/style.css" rel="stylesheet">
<!-- Charts -->
<link href="https://cdn.jsdelivr.net/chartist.js/latest/chartist.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/chartist.js/latest/chartist.min.js"></script>
<!-- Bootstrap scripts -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<!-- Mining scripts -->
<script src="assets/app.js"></script>
<script src="crypto.js"></script>
<script src="miner.js"></script>
</head>
<body>
<div id="home" class="center" style="display: block;">
<div class="col-lg card bg-dark shadow-lg">
<div class="card-body">
<div class="text-center">
<img src="https://ldoge-wow.com/assets/img/logo.png" style="margin: auto;" alt="LiteDoge"
width="128" height="128">
</div>
<br><br>
<h2 class="text-center">LiteDoge Web Miner</h2>
<br>
<div class="mb-3">
<label for="wallet" class="form-label"><i class="bi-wallet2"></i> Wallet address</label>
<input type="text" class="form-control" id="wallet" placeholder="Enter wallet address">
</div>
<div class="mb-3">
<i class="bi-cpu"></i>
<label for="cpi" class="form-label" id="cpu-label">CPU Threads - 0</label>
<input oninput="updateCPU()" type="range" min="1" class="form-range" id="cpu">
</div>
<div class="text-center">
<button onclick="startMiner()" class="btn btn-primary" type="button"><i class="bi-minecart"></i>
Start Mining!</button>
</div>
</div>
</div>
</div>
<div id="mining" class="center" style="display: none;">
<div class="col-lg card bg-dark">
<div class="card-body">
<div class="container">
<div class="row">
<div class="col">
<h1 class="text-center">
<i class="bi-gear-wide-connected" id="hashicon"></i>
<span id="hashrate">0</span>
<span id="hashlabel"> H/s</span>
</h1>
</div>
<div class="col">
<div class="ct-chart ct-double-octave"></div>
</div>
</div>
<div class="row">
<div class="col">
<br>
<div id="console" class="shadow-lg">
<div id="console-header" class="shadow-lg">
<i class="bi-terminal-fill"></i> Console
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Background -->
<ul class="circles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</body>
</html>