-
Notifications
You must be signed in to change notification settings - Fork 0
/
grid.html
53 lines (52 loc) · 2.01 KB
/
grid.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="author" content="aliciaevans">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Code Names</title>
<link rel="stylesheet" type="text/css" href="codenames.css">
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<script src="codenames.js"></script>
</head>
<body>
<div id="header">
<h1>CODENAMES: SPYMASTERS</h1>
</div>
<div id="container">
<div id="gameboard"></div>
<div id="form-container">
<form>
<div class="form-div">
<label>BOARD SETTINGS</label>
</div>
<div class="form-div">
<label>Size of Board: </label>
<input name="size" value="5" type="number" min="4" max="50"/>
</div>
<div class="form-div">
<label>Number of Assassins: </label>
<input name="assassins" value="1" type="number" min="0" max="2500"/>
</div>
<div class="form-div">
<label>Number of Blue Agents: </label>
<input name="blue" value="6" type="number" min="0" max="2500"/>
</div>
<div class="form-div">
<label>Number of Red Agents: </label>
<input name="red" value="7" type="number" min="0" max="2500"/>
</div>
<div id="button-div">
<button>SET BOARD</button>
</div>
</form>
</div>
</div>
<div id="outer-modal">
<div id="inner-modal">
<div id="close"><p>X</p></div>
<p id="error-message">There was an error!</p>
</div>
</div>
</body>
</html>