blob: 87abea004abb8087214e4afbf1ac0db623769670 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>WebIF 2.0</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header><big>🛠️ WebIF 2.0</big></header>
<div id="app"></div>
<noscript>
<main>
<form action="/cgi-bin/cmd" method="post" enctype="text/plain">
<textarea name="-">--- KEEP THIS, WRITE COMMANDS BELOW THE LINE ---
</textarea>
<br>
<input type="submit" value="Send">
</form>
</main>
</noscript>
</div>
<div id="loader" title="click to hide" class="hide">
<div>
<div class="loadspin"></div>
<p>Loading...</p>
</div>
</div>
<script src="config.js"></script>
<script src="ka.js"></script>
<script src="app.js"></script>
</body>
</html>
|