-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (42 loc) · 1.36 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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<title>CoC Answers</title>
</head>
<body>
<p>HEAVILY <strong>WIP</strong></p>
<p>Click the result boxes to copy the solution</p>
</body>
<div id="siteInfo">
<p id="answerCountInfo"></p>
</div>
<div class="mainInputs">
<div id="authorInputDiv">
<p class="inputLabel">Author:</p>
<input type="text" id="authorInput" placeholder="Author"></input>
</div>
<br>
<div id="testCaseInputDiv">
<p class="inputLabel">Test case:</p>
<p class="testCaseLabel">Input:</p>
<textarea class="multiLineInput" id="testCaseInputInput" placeholder="Input"></textarea>
<br>
<p class="testCaseLabel">Output:</p>
<textarea class="multiLineInput" id="testCaseOutputInput" placeholder="Output"></textarea>
</div>
</div>
</br>
<div id="buttonDiv">
<button id="submitButton" onclick="submitSearch()">Search</button>
</div>
<hr>
<div id="resultAmount">Enter a search to find results</div>
<br>
<div id="results">
<p>No results yet</p>
</div>
<script src="answerFile.js"></script>
<script src="searchSystem.js"></script>
<body onLoad="solutionInfoCount()"></body>
</html>