-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.php
More file actions
39 lines (34 loc) · 1.03 KB
/
index.php
File metadata and controls
39 lines (34 loc) · 1.03 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
<?php
?>
<html>
<head>
<title>Online Compiler for Off-Campus Students</title>
</head>
<body>
<div id="whole">
<div id="content">
<table class="code">
<td class="code">
<form action="compile.php" method="post" id="form">
Select Language of Interest:
<select name="language" id="language">
<option value="c">C</option>
<option value="glib">Graphics</option>
<option value="nvcc">NVCC</option>
<option value="cpp">C++</option>
<option value="java">Java</option>
</select>
<br />
<strong>Enter Your code here:<br/></strong>
<textarea name="code" rows=15 cols=100 onkeydown=insertTab(this,event) id="code"></textarea><br/>
<span id="errorCode" class="error"></span><br/><br/>
<strong>Sample Input please:<br/></strong>
<textarea name="input" rows=7 cols=100 id="input"></textarea><br/><br/>
<input type="submit" va lue="Submit" id="submit">
<input type="reset" value="Reset"><br/>
</form>
</td>
</div>
</div>
</body>
</html>