-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanel.html
39 lines (29 loc) · 1.35 KB
/
panel.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
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Libre+Franklin:300,300i,400,400i,600,600i" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="panel/css/github.css">
<link rel="stylesheet" type="text/css" href="panel/css/lua-web-cli.css">
<link rel="stylesheet" type="text/css" href="panel/css/fengari.css">
</head>
<body>
<section class="section--standalone">
<div class="section__content">
<div class="repl">
<div class="state-container">
<select name="state" id="state"></select>
</div>
<code id="fengari-console"></code>
<div class="fengari-input-container">
<label id="fengari-prompt" for="fengari-input">> </label>
<textarea class="lua" id="fengari-input" rows="1"></textarea>
</div>
</div>
</div>
</section>
<script src="messaging.js"></script>
<script src="panel/js/fengari-web.js" type="text/javascript"></script>
<script src="panel/js/highlight.min.js"></script>
<script src="panel/js/lua.min.js"></script>
<script src="panel/lua/web-cli.lua" type="application/lua" async></script>
</body>
</html>