forked from VampyTheGod/flappybit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
79 lines (69 loc) · 3.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<title>Flappybit</title>
<link rel="stylesheet" type="text/css" href="//oss.maxcdn.com/semantic-ui/2.1.7/semantic.min.css" />
<link rel="stylesheet" type="text/css" href="lib/css/style.css" />
<script type="text/javascript" src="//oss.maxcdn.com/socket.io-client/1.3.2/socket.io.min.js"></script>
<script type="text/javascript" src="//oss.maxcdn.com/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript" src="//oss.maxcdn.com/semantic-ui/2.1.7/semantic.min.js"></script>
</head>
<body>
<div id="faucetClaimCaptcha"></div>
<div id="chat">
<div id="chatMonitor"></div>
<button id="connectButton" onclick="window.location.href='https://www.moneypot.com/oauth/authorize?app_id=1162&response_type=token&state=Meh&redirect_uri=http://fingin.github.io/plinko/'">Connect</button>
<span id="connectedUsersText"><span id="connectedUsersAmount">0</span> users on FlappyBit</span>
<span id="connectionText">
Logged in as <span id="username"></span>. <a href="/">Log out</a><br>Balance: <span id="balance"></span> Bits<br>
<br>
<br>
<button id="faucetButton">FAUCET</button>
</span>
</div>
<div id="lineContent">
<ul id="line">
<li>6.0<small>x</small></li>
<li>5.0<small>x</small></li>
<li>4.0<small>x</small></li>
<li>3.0<small>x</small></li>
<li>2.0<small>x</small></li>
<li>1.0<small>x</small></li>
<li>0.8<small>x</small></li>
<li>0.1<small>x</small></li>
<li>0.8<small>x</small></li>
<li>1.0<small>x</small></li>
<li>2.0<small>x</small></li>
<li>3.0<small>x</small></li>
<li>4.0<small>x</small></li>
<li>5.0<small>x</small></li>
<li>6.0<small>x</small></li>
</ul>
</div>
<div id="betPanel">
<button id="depositButton">Deposit</button>
<button id="withdrawButton">Withdraw</button>
<input type="number" name="betAmount" id="betAmount" min="1" value="1" step="1"/>
<button id="doBetButton">BET</button>
</div>
<div id="log">
<table id="table">
<thead>
<tr id="tableTitles">
<th>Id</th>
<th>User</th>
<th>Bet</th>
<th>Multiplier</th>
<th>Profits</th>
<th></th>
</tr>
</thead>
<tbody id="tableContent"></tbody>
</table>
</div>
<script type="text/javascript" src="lib/js/script.js"></script>
<script src='https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit' async defer></script>
</body>
</html>