-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (107 loc) · 4.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Ninja game">
<meta name="author" content="dron">
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=no, initial-scale=1.0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta property="og:title" content="Ninja game" />
<meta property="og:type" content="game" />
<meta property="og:url" content="https://game.asunatoken.com" />
<meta property="og:image" content="https://game.asunatoken.com/images/og-image.jpg" />
<link rel="stylesheet" href="images/index.css">
<link rel="stylesheet" href="images/custom.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@300;400&family=PT+Sans+Narrow&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<title>Token Game</title>
</head>
<body>
<div class="header">
<h1>Token Game</h1>
<h2>Hit the tokens heads and take care of the bombs! Good luck.</h2>
</div>
<div id="extra"></div>
<div id="inputname">
<p><input id="ninjianame" type="text" maxlength="10" autofocus placeholder="INSERT USERNAME"></p>
<img id="submit" src="images/leaderboard/submit.png"/>
</div>
<div id="menu">
<img id="connectwallet" src="images/menu/connectwallet.png"/><br>
<img id="playnow" src="images/menu/playnow.png"/><br>
<img id="goleader" src="images/menu/leaderboard.png"/>
</div>
<div id="leaderboard">
<img class="lead-title" src="images/leaderboard/lead-title.png"/>
<table id="lead-th">
<tr>
<td width="100px">POSITION</td>
<td width="180px">USERNAME</td>
<td width="100px">SCORE</td>
<td width="80px">WALLET</td>
</tr>
</table>
<div id="rankBlock">
<table id="ranking">
<tr class="top3">
<td class="num">1</td>
<td class="name"></td>
<td class="score"></td>
<td class="wallet"></td>
</tr>
<tr class="top3">
<td class="num">2</td>
<td class="name"></td>
<td class="score"></td>
<td class="wallet"></td>
</tr>
<tr class="top3">
<td class="num">3</td>
<td class="name"></td>
<td class="score"></td>
<td class="wallet"></td>
</tr>
<tr>
<td class="num"></td>
<td class="name"></td>
<td class="score"></td>
<td class="wallet"></td>
</tr>
<tr>
<td class="num"></td>
<td class="name"></td>
<td class="score"></td>
<td class="wallet"></td>
</tr>
<tr>
<td class="num"></td>
<td class="name"></td>
<td class="score"></td>
<td class="wallet"></td>
</tr>
</table>
</div>
<img id="return" src="images/leaderboard/return.png"/>
</div>
<div id="gameover">
<p>YOUR SCORE</p>
<p id="ninjiascore">0</p>
<img id="gomenu" src="images/menu/gomenu.png"/><br>
<img id="goleader2" src="images/menu/leaderboard.png"/>
</div>
<div class="footer">
<img src="images/logo-icon-asuna.png" class="logo-footer">
</div>
<script src="scripts/all.js"></script>
<script type="text/javascript" src="scripts/jazzicon_walletlink.js"></script>
<script type="text/javascript" src="https://unpkg.com/[email protected]/dist/web3.min.js"></script>
<script type="text/javascript" src="https://unpkg.com/[email protected]/dist/index.js"></script>
<script type="text/javascript" src="https://unpkg.com/@walletconnect/[email protected]/dist/umd/index.min.js"></script>
<script type="text/javascript" src="https://unpkg.com/[email protected]/dist/fortmatic.js"></script>
<script src="scripts/main.js?version=202203191543"></script>
</body>
</html>