-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (51 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BuzzWord</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap" rel="stylesheet">
<script src="./static/grid.js" defer></script> <!-- makes the board-->
<script src='./static/script.js' defer></script> <!-- fills the board (amongst other things)-->
<link rel="stylesheet" href="./static/style.css">
</head>
<body style="background-image:url('./static/background.jpg');background-size:cover">
<div id="signUp">
<label>User Name
<input type="text" id= "userName"></input>
</label>
<label>Password
<input type="password" id= "password"></input>
</label>
<button class='btnSignUp btnMenu' onclick="signUp()">Sign Up</button>
</div>
<div id="signIn">
<label>User Name
<input type="text" id= "si_userName"></input>
</label>
<label>Password
<input type="password" id= "si_password"></input>
</label>
<button class='btnSignIn btnMenu' onclick="signIn()">Sign In</button>
</div>
<div id ='roomList'></div>
<!-- <div id="games"></div> -->
<div class= 'centered'>
<div id="message"></div>
<div id='infoPanel'>Info</div>
<label id="countDownLabel">10</label>
<section id='bigHex' style='display:none'></section>
<div style='position:relative;z-index:10'>
<div id="word"></div>
<div id="submitReset">
<button class='btnSubmit btnMenu' onclick="submitWord()">Submit</button>
<button class='btnReset btnMenu' onclick="resetWord()">Reset</button>
</div>
</div>
<div id="historyHolder"></div>
</div>
</body>
</html>