blob: 52a060c5efdfe83354cfb38849432893d4579315 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
<?php
/**
* HyBBX browser terminal — copy this folder to your httpd document root.
* WebSocket data comes from hybbx only; this file is not part of the daemon.
*/
$base = rtrim(dirname($_SERVER['SCRIPT_NAME'] ?? ''), '/');
$ws_path = ($base !== '' ? $base : '/hybbx-websocket') . '/ws';
$scheme = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'wss' : 'ws';
$host = $_SERVER['HTTP_HOST'] ?? 'localhost';
$ws_url = $scheme . '://' . $host . $ws_path;
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HyBBX</title>
<style>
html, body { height: 100%; margin: 0; }
body {
display: flex;
flex-direction: column;
background: #0a0a12;
color: #c8d0d8;
font-family: ui-monospace, "Cascadia Mono", "Consolas", monospace;
}
#status {
position: fixed;
top: 0;
right: 0;
padding: .5rem 1rem;
font-size: .8rem;
background: #1a1a28;
z-index: 1;
}
#term {
flex: 1;
min-height: 0;
box-sizing: border-box;
width: 100%;
margin: 0;
padding: 1rem;
padding-bottom: .5rem;
white-space: pre-wrap;
overflow-y: auto;
overflow-x: hidden;
}
#input-bar {
flex: none;
display: flex;
width: 100%;
box-sizing: border-box;
border-top: 1px solid #2a2a38;
background: #12121c;
}
#cmd {
flex: 1;
width: 100%;
min-width: 0;
box-sizing: border-box;
border: none;
border-radius: 0;
background: #12121c;
color: #e0e4e8;
font: inherit;
font-size: 1rem;
line-height: 1.4;
padding: .75rem 1rem;
outline: none;
}
#cmd::placeholder { color: #6a7280; }
#cmd:focus { background: #161622; }
#cmd:disabled { opacity: .55; cursor: not-allowed; }
</style>
</head>
<body>
<div id="status">disconnected</div>
<pre id="term"></pre>
<form id="input-bar" autocomplete="off">
<input type="text" id="cmd" disabled
autocomplete="off" autocapitalize="off" autocorrect="off" spellcheck="false"
enterkeyhint="send"
placeholder="Type command or text — Enter to send">
</form>
<script>
window.HYBBX_WS_URL = <?php echo json_encode($ws_url, JSON_UNESCAPED_SLASHES); ?>;
</script>
<script src="hybbx-terminal.js"></script>
</body>
</html>
|