generalbots/botui/ui/suite/partials/terminal.html
Rodrigo Rodriguez (Pragmatismo) 037db5c381 feat: Major workspace reorganization and documentation update
- Add comprehensive documentation in botbook/ with 12 chapters
- Add botapp/ Tauri desktop application
- Add botdevice/ IoT device support
- Add botlib/ shared library crate
- Add botmodels/ Python ML models service
- Add botplugin/ browser extension
- Add botserver/ reorganized server code
- Add bottemplates/ bot templates
- Add bottest/ integration tests
- Add botui/ web UI server
- Add CI/CD workflows in .forgejo/workflows/
- Add AGENTS.md and PROD.md documentation
- Add dependency management scripts (DEPENDENCIES.sh/ps1)
- Remove legacy src/ structure and migrations
- Clean up temporary and backup files
2026-04-19 08:14:25 -03:00

23 lines
976 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<link rel="stylesheet" href="/suite/css/terminal.css" />
<link rel="stylesheet" href="/suite/css/xterm.css" />
<div class="botcoder-terminal-container">
<div class="botcoder-terminal-header">
<div class="botcoder-terminal-tabs" id="botcoderTerminalTabs">
<div class="botcoder-term-tab active">
<span>Terminal 1</span>
<span class="close-tab" onclick="botCoderTerminal.closeTerminal()">×</span>
</div>
</div>
<div class="botcoder-terminal-actions">
<button class="botcoder-btn-icon" onclick="botCoderTerminal.newTerminal()" title="New Terminal"></button>
<button class="botcoder-btn-icon" onclick="botCoderTerminal.clearTerminal()" title="Clear">🗑️</button>
</div>
</div>
<div class="botcoder-terminal-body">
<div id="xtermContainer" class="xterm-container"></div>
</div>
</div>
<script src="/suite/js/terminal.js"></script>