-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 1.02 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
<html>
<head>
<title>Online IDE</title>
</head>
<body>
<center>
<h1>Online IDE</h1>
<form id="myform" name="myform" method="post" action="compilecode">
<h3>Code</h3>
<textarea rows="13" cols="100" id="code" name="code"></textarea>
<br />
<h3>Input</h3>
<textarea rows="10" cols="100" id="input" name="input"></textarea>
<br />
Language :
<select name="lang">
<option value="C">C</option>
<option value="Java">Java</option>
<option value="Python">Python</option>
</select>
Compile With Input :
<input type="radio" name="inputRadio" id="inputRadio" value="true" />yes
<input type="radio" name="inputRadio" id="inputRadio" value="false" />No
<br />
<input type="submit" value="submit" name="submit" />
</form>
</center>
<script src="index.js"></script>
</body>
</html>