-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (28 loc) · 1.27 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="loading.css">
<title>BibleGuess</title>
</head>
</body>
<div id="main">
<h1>BibleGuess</h1>
<p>Join an existing game:</p>
<!-- <input type="number" placeholder="Game number"/> -->
<div id="digits">
<form action="nickname.php" method="POST" id="formular">
<input type="number" class="gameInput" id="digitOne" name="di1" maxlength="1" oninput="nextDigit(2);" />
<input type="number" class="gameInput" id="digitTwo" name="di2" maxlength="1" oninput="nextDigit(3);" />
<input type="number" class="gameInput" id="digitThree" name="di3" maxlength="1" oninput="nextDigit(4);" />
<input type="number" class="gameInput" id="digitFour" name="di4" maxlength="1" oninput="nextDigit(5);" /><br>
<input type="submit" class="gameInput" value="Go!"/>
</form>
</div>
<!-- spinner -->
<div class="lds-facebook" id="joinSpinner" style="display: none;"><div></div><div></div><div></div></div>
<p>or: <a href="create.html">create game</a></p>
</div>
<script src="script.js"></script>
</body>
</html>