-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
35 lines (27 loc) · 892 Bytes
/
index.php
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
<html>
<head>
<title>Verium Miner Monitor</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="icon" href="favicon.png">
<link rel="stylesheet" href="styles.css">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<script>
$(function() {
var auto_refresh;
auto_refresh = setTimeout(function loadStats () {
$("#page").load("index_monitor.php", function () {setTimeout(loadStats, 30000);});
},0); //first run is instant
});
</script>
<div id="header">
<h1><img src="vrm.png" hspace="10px">Verium Miner Monitor</h1>
</div>
<div id="page">Working...</div>
<div id="footer">
<p><a href="https://github.com/effectsToCause/veriumMiner">Download veriumMiner</a></p>
<p><a href="https://github.com/fireworm71/veriumMiner">Download Fireworm's veriumMiner</a></p>
</div>
</body>
</html>