-
Notifications
You must be signed in to change notification settings - Fork 0
/
sudokuQuery.html
80 lines (80 loc) · 2.51 KB
/
sudokuQuery.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>
SudokuQuery
</title>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
</link>
<link href="sudoku.css" rel="stylesheet">
</link>
</meta>
</meta>
</head>
<body>
<div class="wrapper">
<header class="header">
<h4>
SudokuQuery
</h4>
</header>
<aside class="sidebar-left">
<div class="alert alert-info" id="message">
</div>
<label for="runner">
Time
</label>
<span id="runner">
</span>
<div class="form-group">
<label for="difficulty">
Select difficulty:
</label>
<select class="form-control" id="difficulty">
<option>
Beginner
</option>
<option>
Easy
</option>
<option>
Normal
</option>
<option>
Expert
</option>
<option>
Devil
</option>
</select>
</div>
<button class="btn btn-primary" id="validate" type="button">
Validate
</button>
<button class="btn btn-primary" id="reset" type="button">
Reset
</button>
</aside>
<article class="content">
<div id="sudoku-grid">
</div>
<div id="selection-grid">
</div>
</article>
</div>
</body>
</html>
<script src="jQuery/jquery-3.2.1.min.js">
</script>
<script src="jquery-ui/jquery-ui.min.js">
</script>
<script src="jquery-runner/jquery.runner-min.js">
</script>
<script src="scripts/sudoku.js">
</script>
<script src="bootstrap/js/bootstrap.min.js">
</script>
<script src="scripts/sudoku_engine.js">
</script>