-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
114 lines (113 loc) · 4.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Crypto Miner</title>
<meta name="description" content="Crypto Miner" />
<meta name="keywords" content="cryptominer, crypto miner, bitcoin, mining, online, cryptocurrency, free, btc"/>
<meta name="viewport" content="width=device-width" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="google-site-verification" content="Mq5B6m3Z19BJiai8Qc47V3HdUR7G75aBnp0BXfpYj4c" />
<link rel="stylesheet" href="materialize.min.css">
<link rel="stylesheet" href="main.css" type="text/css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-112316070-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-112316070-1');
</script>
</head>
<body>
<header id="header">
<div class="row">
<div class="logo-icon">
</div>
<div class="page-header">
Crypto Miner
</div>
</div>
</header>
<main id="body">
<div class="page-container">
<div class="center-pane">
<div class="row center">
<div class="col s12">
<h5 class="light message-box">
An Application that automatically mines cryptocurrency with your device
</h5>
</div>
</div>
<div class="status-section" id="status_section">
<div class="display-field">
<span class="label">Hashes / Sec</span>
<div id="hashesPerSecond" class="value"></div>
</div>
<div class="display-field">
<span class="label">Mined Hashes</span>
<div id="totalHashes" class="value"></div>
</div>
<div class="display-field">
<span class="label">Accepted Hashes</span>
<div id="acceptedHashes" class="value"></div>
</div>
<div class="display-field">
<span class="label">Threads</span>
<input type="number" max="8" min="1" id="numThreads" class="value number">
</div>
<div class="display-field">
<span class="label">CPU Usage</span>
<input type="number" max="100" min="1" id="throttle" class="value number">
</div>
<div class="display-field">
<span class="label">Hash Difficulty</span>
<div id="difficulty" class="value"></div>
</div>
</div>
<div class="mining-section" id="mining_section">
<div>
<span class="label">Earnings</span>
<div class="mined-coins value" id="minedCoins"></div>
</div>
</div>
<div class="row center">
<div class="col s12">
<input type="button" value="Start Mining" id="startMiner" class="btn mining-btn">
<input type="button" value="Stop Mining" id="stopMiner" class="btn mining-btn hide">
</div>
</div>
<form id="withdrawForm" class="row center">
<div class="withdraw-section">
<input type="text" placeholder="Bitcoin Address" id="btcAddress" class="address-input" required>
<input type="submit" value="Withdraw" id="withdrawBtn" class="btn withdraw-btn">
</div>
<div class="caption-text">
You need a minimum of 0.00100000 BTC to withdraw
</div>
<div class="referal-section">
<div class="caption-text">
Earn More! Refer your friends and get 10% of their earnings when they withdraw.
</div>
<div id="referalLink" class="referal-link"></div>
</div>
<div class="terms-conditions">
By clicking on Start Mining, you agree to our <a href="/terms" target="_blank" id="conditions">Terms and Conditions</a>
</div>
</div>
</div>
<div id="withdrawModal" class="modal-overlay hide">
<div class="modal-dialog">
<h5 class="modal-header" id="paymentStatus"></h5>
<div class="payment-message" id="paymentMessage"></div>
<input type="button" value="Close" id="closeModal" class="btn close-modal">
</div>
</div>
</div>
</main>
<script type="text/javascript" src="authedmine.min.js"></script>
<script type="text/javascript" src="jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="main.js"></script>
</body>
</html>