-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (31 loc) · 949 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<form action="use-api.php" method="post">
<input type="text" name="lang" value="C#"/>
<br/><br/>
<textarea name="code" rows="25" cols="50">using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace Rextester
{
public class Program
{
public static void Main(string[] args)
{
//Your code goes here
Console.WriteLine("Hello, world!");
}
}
}
</textarea>
<br/><br/>
<input type="text" name="token" value="0"/>
<br/><br/>
<button type="submit">Execute</button>
</form>
</body>
</html>