-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (68 loc) · 2.44 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!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">
<link href="https://fonts.googleapis.com/css?family=Exo" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<link rel="stylesheet" href="oldstyles.css">
<link rel="stylesheet" href="styles.css">
<title>Shortest path to all keys</title>
</head>
<body>
<div class="containertop">
<div class="title">
<h2>Shortest path to all keys</h2>
<h3>Game Setup</h3>
</div>
<div class="inputs">
<div class="inputcontainer">
<div class="form-control" >
<div class="entry">
<label for="rows">Number Of Rows </label>
<input type="number" id="rows" name="rows" min="1" value="1" />
</div>
<div class="entry">
<label for="cols">Number Of Columns</label>
<input type="number" id="cols" name="cols" min="2" value="2" />
</div>
</div>
<button class="btn" id="addbtn">Generate</button>
<button class="btn" id="preparedButton">Prepared List</button>
</div>
<div class="form-control" >
<p>Small letters as keys (a-f)</p>
<p>Capital letters as locks (A-F)</p>
<p> @ As a starting point</p>
<p># As a wall</p>
<p>. As a empty space</p>
</div>
<table id="gentable" class="gentable">
</table>
<div class="playdiv" >
<button id="playbutton" style="display: none;">▶</button>
</div>
</div>
</div>
<div id="game" class="container" style="display: none;">
<div class="mid">
<h3>Game Grid</h3>
<h4 id="coordinates" class="subtitle" > </h4>
<div id="grid"></div>
</div>
<div class="output">
<br>
<h4 id="moves" class="subtitle" > </h4>
</div>
</div>
<script src="play.js"></script>
<script >
// Made By Sal7one
</script>
</body>
</html>
<!--
Github@Sal7one
-->