-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubmit.html
29 lines (27 loc) · 999 Bytes
/
submit.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
<!DOCTYPE html>
<head>
<title>EricJudge</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.14.0/ace.js" type="text/javascript" charset="utf-8"></script>
<script type="module" src="submit.js"></script>
<h1>Welcome to Eric's Online Judge</h1>
</h4>
<a href="index.html">Home Page</a> |
<a href="problems.html">View Problemset</a> |
<a href="submit.html">Submit Code</a>
</h4>
<h3>Submit Code</h3>
<p>Code will be compiled as follows: <code>g++ file.cpp -std=c++17 -O2</code></p>
<input type="checkbox" id="vim">VIM MODE</input>
<div id="editor" style="height:400px; width:500px; border: 1px solid lightgray;"></div>
<div>
<br>
<input id="id" placeholder="Submission ID"></input>
<button id="submit">Go!</button>
</div>
<h3>Response</h3>
<pre id="resp">No response yet</pre>
</body>
</html>