-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 lines (51 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Ellipsoid</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="assets/ellipsoid.png" type="image/png" />
<script src="https://ut1l.pages.dev/util.js"></script>
</head>
<body>
<div class="center title">
<h1>Ellipsoid</h1>
<p>battle your way through...</p>
<br />
<form onsubmit="entergame();return false;">
<label for="username">Username</label><br />
<input
type="text"
placeholder="2-15 characters"
id="username"
minlength="2"
maxlength="15"
required
autocomplete="off"
autofocus
spellcheck="false"
/><br />
<label for="username">Icon Seed (Optional)</label><br />
<input
type="text"
placeholder="Leave blank to use username"
id="seed"
autocomplete="off"
autofocus
spellcheck="false"
/><br />
<input type="checkbox" id="keep" />
<label for="keep">Keep username & seed next games</label>
<br />
<button type="submit">Play</button>
</form>
</div>
<footer>
<a href="https://github.com/Someone68/Ellipsoid" target="_blank"
>github.com/Someone68/Ellipsoid</a
>
</footer>
<script src="script.js"></script>
</body>
</html>