-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
51 lines (42 loc) · 1.35 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title>extramuros</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body onload="setup(3)">
<div id="global">
<table>
<tr>
<td></td>
<td>Password: <input type="password" name="password" length="32" id="password" class="text"/></td>
</tr>
<tr>
<td><input type="button" value="eval" class="evalButton" onclick="evaluateBuffer('edit1');"/></td>
<td><textarea id="edit1" rows="9" disabled>******</textarea></td>
</tr>
<tr>
<td><input type="button" value="eval" class="evalButton" onclick="evaluateBuffer('edit2');"/></td>
<td><textarea id="edit2" rows="9" disabled>******</textarea></td>
</tr>
<tr>
<td><input type="button" value="eval" class="evalButton" onclick="evaluateBuffer('edit3');"/></td>
<td><textarea id="edit3" rows="9" disabled>******</textarea></td>
</tr>
<!--
<tr>
<td colspan="2"><textarea id="feedback" rows="6" disabled style="width: 445px;"></textarea></td>
</tr>
-->
</table>
<script src="/channel/bcsocket.js"></script>
<script src="/share/share.uncompressed.js"></script>
<script src="/share/textarea.js"></script>
<script src="/share/json.js"></script>
<script src="jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="browser.js"></script>
<script src="visuals.js"></script>
<script src="misc.js"></script>
</body>
</html>