-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (34 loc) · 1.28 KB
/
index.html
File metadata and controls
39 lines (34 loc) · 1.28 KB
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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>New</title>
<link href="css/reset.css" type="text/css" rel="stylesheet" />
<link href="css/style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="content">
<div id='preview'>
<h1>Hello, now you can generate needed game table</h1>
<h1>Just input parametrs and press "GENERATE"</h1>
<form method="post" action=#>
<label for='rows-i'>Input number of rows
<br />(max 15)
</label>
<input type='text' id='rows-i' />
<label for='colls-i'>Input number of colls
<br />(max 15)
</label>
<input type='text' id='colls-i' />
<label for='badS-i'>Input number of bad cells</label>
<input type='text' id='badS-i' />
<label for='goodS-i'>Input number of good cells</label>
<input type='text' id='goodS-i' />
<button id='generate'>GENERATE</button>
<button id='generate-default'>GENERATE DEFAULT</button>
</form>
</div>
</div>
<script src='scripts/auto.js'></script>
</body>
</html>