-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 920 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 920 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Force</title>
<link rel="stylesheet" href="./node_modules/skeleton-css/css/normalize.css" media="screen" charset="utf-8">
<link rel="stylesheet" href="./node_modules/skeleton-css/css/skeleton.css" media="screen" charset="utf-8">
<link rel="stylesheet" href="./assets/css/main.css" type="text/css" media="screen" charset="utf-8">
<script type="text/javascript" src="./assets/js/phaser.min.js"></script>
</head>
<body>
<div class="container start-container">
<div class="glass"></div>
<div class="screen mingle-screen">
<div class="qr-code">
</div>
</div>
</div>
<div class="container game-container hide">
Connected! Game started!
</div>
</body>
<script>
if (typeof require !== 'function') {
} else {
// If we are in the electron env
require('./app/start.js')()
}
</script>
</html>