forked from knazir/DetectiveKemdi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (69 loc) · 3.09 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
<!doctype html>
<html class="no-js" lang="">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-115746315-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-115746315-1');
</script>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Detective Kemdi</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans" />
<link rel="stylesheet" href="css/main.css">
<script src="js/main.js" defer></script>
</head>
<body>
<div id="credit">
<span>Credit: Originally developed by <a href="https://github.com/knazir/DetectiveKemdi" target="_blank">Kashif Nazir</a><br>UI optimized by Mr.Kro</span>
</div>
<div class="split-pane">
<div id="inputs" class="pane">
<h3>Guesses</h3>
<ul id="inputs-list">
</ul>
<div class="input-group">
<div class="inline-group">
<label for="num">Method 1:<br/>Guess:</label><input id="num" type="number" placeholder="XYZ">
</div>
<div class="inline-group">
<label for="circles">〇:</label>
<select id="circles">
<option selected>0</option>
<option>1</option>
<option>2</option>
<option>3</option>
</select>
<strong class="separator">/</strong>
<label for="triangles">△:</label>
<select id="triangles">
<option selected>0</option>
<option>1</option>
<option>2</option>
<option>3</option>
</select>
</div>
<button onclick="guess()">Add</button>
</div>
<div class="input-group quick-guess">
<div class="inline-group">
<label for="quick">Quick guess:<br/>3 digits+〇+△:</label>
<input id="quick" onkeydown="handleQuickGuessKeyPress(event)" placeholder="XYZAB">
</div>
<button onclick="quickGuess()">Enter</button>
</div>
<div id="error"></div>
</div>
<div id="answers" class="pane">
<div class="recommendation-info">Recommendations:<br/><span id="recommendation">None</span></div>
<h3 id="answers-title">Possible Answers</h3>
<ul id="answers-list"></ul>
</div>
</div>
</body>
</html>