diff options
| author | Morgana <Morgana@icolotl.com> | 2026-09-15 11:28:53 -0500 |
|---|---|---|
| committer | Morgana <Morgana@icolotl.com> | 2026-09-15 11:28:53 -0500 |
| commit | 2c76015a7a3f3a08ba205b04729f29df9fb7389f (patch) | |
| tree | e12b09312ab70253d32fb5576f5dd2d76ceda196 /static/index.html | |
Initial Commit
Diffstat (limited to 'static/index.html')
| -rw-r--r-- | static/index.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..26e978c --- /dev/null +++ b/static/index.html @@ -0,0 +1,40 @@ +<!DOCTYPE html> +<html> + +<!-- +Index Virtual Terminal (IVT) Webclient +Copyright (C) 2026 Morgana <morgana@icolotl.com> + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as published +by the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see <https://www.gnu.org/licenses/>. +--> + +<head> + <link rel="stylesheet" href="/style/style.css"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <script src="/script/main.js" defer></script> + <title>INDEX Terminal</title> +</head> + +<body> + <div id="stdout"> + <div><noscript>Javascript is required to use the INDEX Terminal.</noscript></div> + </div> + <form id="stdin-box" data-offline> + <span id="stdin-prompt">prompt>LOADINGJS></span> + <input id="stdin" disabled> + <button id="stdin-btn" type="submit" disabled>==></button> + </form> +</body> + +</html>
\ No newline at end of file |
