This repository was archived by the owner on Apr 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhome.php
More file actions
111 lines (84 loc) · 3.39 KB
/
home.php
File metadata and controls
111 lines (84 loc) · 3.39 KB
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
<?php
// login check:
include 'include_logincheck.php';
// include head:
include 'include_head.php';
?>
<!-- bg-dark: #343a40 style="background-image: url('assets/images/dashboard_background.png');" #F8F8F8-->
<body class="font-apple-system fs-12" style="background-color: #181818;">
<!-- Menu -->
<?php include 'include_navigation.php';?>
<!-- Main AREA -->
<br>
<div class="section">
<div class="container-fluid">
<div class="row">
<div class="col-md-12" valign="top">
<div class="p-0" id="coredata" style="background-color: #0e0e0e; border-radius: 25px; border: 0px;"><img src="assets/images/_smarty/loaders/1.gif" style="width: 50px; height: : 50px;"> LOADING...
</div>
</div>
</div> <!-- row -->
<div class="row">
<div class="col-md-12" valign="top">
<div class="card" id="1" style="background-color: #101010;">
<div class="card-header border-bottom border-dark text-white" style="background-color: #0000; color: #fffff;">
<strong>LATEST TRANSACTIONS</strong>
</div>
<div class="card-text p-10" style="background-color: #0e0e0e;">
<div id="transactions"><img src="assets/images/_smarty/loaders/1.gif" style="width: 50px; height: : 50px;"> LOADING...</div>
</div>
</div>
</div>
</div> <!-- row -->
<div class="row">
<div class="col-md-12" valign="top">
<div class="card" id="1" style="background-color: #101010;">
<div class="card-header border-bottom border-dark text-white" style="background-color: #0000; color: #fffff;">
<strong>TRANSACTIONS IN NODE MEMORY POOL</strong>
</div>
<div class="card-text p-10" style="background-color: #0e0e0e;">
<div id="transactionspool"><img src="assets/images/_smarty/loaders/1.gif" style="width: 50px; height: : 50px;"> LOADING...</div>
</div>
</div>
</div>
</div> <!-- row -->
<div class="row">
<div class="col-md-12" valign="top">
<div class="card" id="1" style="background-color: #101010;">
<div class="card-header border-bottom border-gray text-white" style="background-color: #0000; color: #fffff;">
<strong>LATEST BLOCKS</strong>
</div>
<div class="card-text p-10" style="background-color: #0e0e0e;">
<div id="blocks"><img src="assets/images/_smarty/loaders/1.gif" style="width: 50px; height: : 50px;"> LOADING...</div>
</div>
</div>
</div>
</div> <!-- row -->
</div> <!-- /container-fluid -->
</div> <!-- /section -->
<!-- Footer -->
<?php include 'footer.php';?>
<!-- Footer -->
<!-- SCROLL TO TOP -->
<a href="#" id="toTop"></a>
</body>
<!-- JAVASCRIPT FILES -->
<script>var plugin_path = 'assets/plugins/';</script>
<script type="text/javascript" src="assets/plugins/jquery/jquery-3.3.1.min.js"></script>
<script src="assets/js/scripts.js"></script>
<script>
$(document).ready(function(){
$("#coredata").load("include_coredata.php");
$("#transactions").load("include_transactions.php");
$("#transactionspool").load("include_transactions_pool.php");
$("#blocks").load("include_blocks.php");
setInterval(function(){
// $("#coredata").load("include_coredata.php");
//$("#transactions").load("include_transactions.php");
//$("#transactionspool").load("include_transactions_pool.php");
//$("#blocks").load("include_blocks.php");
}, 60000);
});
</script>
</body>
</html>