-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
155 lines (142 loc) · 5.64 KB
/
dashboard.html
File metadata and controls
155 lines (142 loc) · 5.64 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="/assets/js/sorttable.js"></script>
<script src="https://momentjs.com/downloads/moment.min.js"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<link rel="stylesheet" type="text/css" href="/assets/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/assets/css/util.css">
<link rel="stylesheet" type="text/css" href="/assets/css/dashBoard.css">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/site.webmanifest">
<link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/favicon/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="msapplication-TileColor" content="#c4c4c4">
<meta name="msapplication-config" content="/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff" />
<meta property="og:title" content="TwitchTurtle" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://trtl.tv" />
<meta property="og:image" content="https://trtl.tv/assets/img/logo.png" />
<meta property="og:description" content="TwitchTurtle is a fast, simple, and secure Streamlabs donation service" />
<title>TwitchTurtle dashboard</title>
</head>
<body>
<!-- Header Start-->
<div class="headerMain">
<img src="/assets/img/logo.png" alt="TwitchTurtle" class="logoHeader">
<div class="headerTleft">
<span class="login100-form-title" style="color:#8e8a8a;">TwitchTurtle</span>
<span style="padding-left:20px; ">Dashboard</span>
</div>
</div>
<!-- Header End-->
<div class="dashboard">
<!-- Wallet -->
<div class="contenBox m-t-80">
<strong>Synced: </strong><span id="blockCount">None</span>
<h3>Wallet Info</h3>
<table class="tb m-t-20">
<tbody>
<tr>
<th width="250">Donation Link:</th>
<td id="name"><a target="_blank" id="userLink">Username</a></td>
</tr>
<tr>
<th>Public Address:</th>
<td>
<span id="address" style="font-size:11px;word-break: break-all">
TRTL...
</span>
<button class="address p-l-10" onclick="copyToClipboard('#address')" title="copy address"><i class="fa fa-copy" style="font-size:14px;"></i></button>
</td>
</tr>
<tr>
<th>Available:</th>
<td>
<span id="available_balance">0.00</span> TRTL /
$<span id="usd_balance">0.00</span> USD
</td>
</tr>
<tr>
<th style="width: 35%;">Locked /<wbr> Unconfirmed:</th>
<td><span id="locked_amount">0.00</span> TRTL</td>
</tr>
<tr>
<th>Minimum donation to show on screen: (in USD)</th>
<td>
<input id="minalert_amount" type="number" placeholder="0.00" onchange="minAlert();" onkeyup="this.onchange();" onpaste="this.onchange();" oninput="this.onchange();"/>
</td>
</tr>
<tr>
<th>Withdraw:</th>
<td>
<textarea id="withdraw" style="overflow: hidden;margin-top: 5.5px;margin-bottom: 0px;height: 36px;width: 51%;font-size: 11px;" placeholder="Your personal TRTL address"></textarea>
<button class="address p-l-10" onclick="withdraw(document.getElementById('withdraw').value)" title="Withdraw TRTL">Withdraw!</button>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Wallet End -->
<!-- Transations -->
<div class="contenBox m-t-30">
<h3>Latest Transactions</h3><button onclick="submit()" title="Refresh"><i class="fa fa-refresh" style="font-size:14px;"></i></button>
<div>
<table class="tb m-t-20 sortable">
<thead>
<tr>
<th id="time" class="th-td">Time</th>
<th class="th-td">Name</th>
<th class="th-td">Message</th>
<th class="th-td sorttable_numeric">Amount</th>
<th class="th-td">USD</th>
</tr>
</thead>
<tbody id="rows"></tbody>
<tfoot></tfoot>
</table>
</div>
</div>
</div>
<!-- Transactions End -->
<!-- Footer Start -->
<footer class="footer-distributed">
<div class="footer-right">
<a href="https://twitch.tv/TwitchTurtleOfficial"><i class="fab fa-twitch"></i></a>
<a href="https://chat.Trtl.tv"><i class="fab fa-discord"></i></a>
<a href="https://reddit.com/r/TRTL"><i class="fab fa-reddit"></i></a>
<a href="https://github.com/TwitchTurtle/"><i class="fab fa-github"></i></a>
</div>
<div class="footer-left">
<p class="footer-links">
<a href="https://trtl.tv">TwitchTurtle</a>
·
<a href="https://turtlecoin.lol">TurtleCoin</a>
·
<a href="https://docs.trtl.tv">Help</a>
·
<a href="https://docs.turtlecoin.lol/getting-started/">Getting Started</a>
·
<a href="https://trtl.tv/tos">Terms of Service</a>
</p>
<p>Twitch Turtle © 2018</p>
</div>
</footer>
<!-- Footer End -->
<script src="/assets/js/dashBoard.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-113862764-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-113862764-3');
</script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous" lazyload>
</body>
</html>