-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmaker.html
More file actions
55 lines (43 loc) · 1.68 KB
/
maker.html
File metadata and controls
55 lines (43 loc) · 1.68 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Problem Maker</title>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="toast/codemirror.min.css" />
<link rel="stylesheet" href="toast/toastui-editor.min.css" />
</head>
<body>
<h1>Problem Maker</h1>
<h1>Problem Input</h1>
<div><textarea id="problem-input" style="width: 100%; height: 100px;"></textarea></div>
<div><button id="problem-load-button" type="button">Load</button></div>
<hr />
<div>
<div>
title: <input type="text" name="title" />
</div>
<div id="content-editor"></div>
<h2>Open Test Cases <button id="open-test-case-add-button" type="button">Add</button></h2>
<ol id="open-test-case-list"></ol>
<h2>Random Test Cases</h2>
<div id="random-test-case-editor" style="width: 600px; height: 400px; border: 1px solid black;"></div>
<h2>Solution</h2>
<div id="solution-editor" style="width: 600px; height: 400px; border: 1px solid black;"></div>
<div><button id="run-button" type="button">Run</button></div>
<h3>Solution Result</h3>
<textarea id="solution-result" readonly style="width: 500px; height: 200px;"></textarea>
<div>
<button id="problem-make-button" type="button">Make</button>
</div>
</div>
<hr />
<h1>Problem Output</h2>
<div><textarea id="problem-output" readonly style="width: 100%; height: 100px;"></textarea></div>
<script src="jquery-3.5.1.min.js"></script>
<script src="toast/toastui-jquery-editor.min.js"></script>
<script src="vs/loader.js"></script>
<script src="js/maker.js"></script>
</body>
</html>