Files
NebulaBrowser/plugins/nebot/page.html
T
2025-10-09 13:16:40 +13:00

32 lines
944 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.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Nebot</title>
<link rel="stylesheet" href="page.css" />
<!-- Removed external CDN scripts: libs provided via renderer-preload.js for self-contained plugin -->
</head>
<body>
<div id="nebot-app" class="app">
<aside class="sidebar">
<div class="sidebar-header">
<h1>Nebot</h1>
<button id="new-chat" title="New Chat"></button>
</div>
<ul id="chat-list" class="chat-list"></ul>
<div class="sidebar-footer">
<button id="settings-btn">⚙ Settings</button>
</div>
</aside>
<main class="main">
<div id="messages" class="messages"></div>
<form id="composer" class="composer">
<textarea id="input" placeholder="Ask Nebot anything..." rows="1"></textarea>
<button id="send" type="submit">Send</button>
</form>
</main>
</div>
<script src="page.js"></script>
</body>
</html>