forked from CBGamesdev/chilibowlruffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.37 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
<!DOCTYPE html>
<html data-ruffle-optout>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Chili Bowl Games Flash Pack!</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato" />
</head>
<body>
<div id="nav">
<div id="title">
</div>
<div id="file-picker">
<div id="local-file-container">
<span>Upload a SWF:</span>
<input type="file" accept=".swf,.spl" id="local-file" />
</div>
<div id="sample-swfs-container">
<span id="sample-swfs-label">Select a game:</span>
<select id="sample-swfs">
<option value="none">None</option>
<optgroup id="games-optgroup" label="Games"></optgroup>
</select>
<div id="author-container">
<span>Author: </span><a href="#" target="_blank" id="author"></a>
</div>
</div>
</div>
</div>
<div id="main">
<div id="overlay"></div>
<div id="prompt">Select a game! Or drag and drop your own.</div>
</div>
<script src="index.js"></script>
</body>
</html>