generated from snakemode/vite-typescript-azure-functions
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
99 lines (91 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Ably Arcade</title>
<script
charset="utf-8"
type="text/javascript"
src="//js.hsforms.net/forms/v2.js"
></script>
<script src="./script.ts" type="module"></script>
<link rel="stylesheet" href="./style.css" />
<link rel="icon" type="image/png" href="assets/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta property="og:title" content="Ably Arcade" />
<meta
property="og:description "
content="The real home of realtime games"
/>
<meta property="og:url" content="https://arcade.ably.dev/" />
<meta property="og:image" content="https://arcade.ably.dev/og.png" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@ablyrealtime" />
<meta name="twitter:title" content="Ably Arcade" />
<meta
name="twitter:description"
content="The real home of realtime games"
/>
<meta name="twitter:image" content="https://arcade.ably.dev/og.png" />
</head>
<body id="body">
<h1>Ably arcade</h1>
<div id="signup-form"></div>
<div id="arcade">
<div id="spectatorControls" class="spectator-controls">
<button class="start" id="spectatorControlsStartContest">
Start Game
</button>
</div>
<div class="layout">
<div class="scoreboard-container" id="global-scoreboard-container">
<section class="scoreboard">
<h2>All High Scores</h2>
<table id="global-scoreboard">
<thead>
<tr>
<th>Name</th>
<th class="score-number">Score</th>
</tr>
</thead>
<tbody></tbody>
</table>
<div class="qr-code-container">
<div class="qr-code-banner">
<img src="assets/qr-url-code.png" alt="" />
<strong>https://arcade.ably.dev/</strong>
</div>
<div class="qr-code-icon">
<img src="assets/qr-icon.svg" alt="" />
</div>
</div>
</section>
</div>
<div class="scoreboards">
<div class="timer" id="timer">00:00</div>
<section class="scoreboard">
<h2>This Game Scores</h2>
<table id="scoreboard">
<thead>
<tr>
<th>Name</th>
<th class="score-number">Score</th>
</tr>
</thead>
<tbody></tbody>
</table>
</section>
</div>
<div class="canvas-holder" id="game-root"></div>
</div>
<div class="player-messages" id="player-messages"></div>
</div>
<div id="spectate">Let me spectate</div>
<template id="scoreboard-row-template">
<tr>
<td data-name>Fred</td>
<td data-score class="score-number">100</td>
</tr>
</template>
</body>
</html>