CxWebApp/static/index 2.html
CxAI Agent d057e09fa2
Some checks are pending
build-and-push / image (push) Waiting to run
feat: add new panes for demand, diffusion, inbox, items, lang, mac, slack, system, tools, and websocket
- Implemented demand pane for managing trend-driven design jobs.
- Created diffusion pane for generating images via Stable Diffusion.
- Added inbox pane for sweeping and routing artifacts through the CxAI inbox classifier.
- Developed items pane for CRUD operations against /api/items.
- Introduced lang pane for running language pipelines.
- Established mac pane for macOS app distribution information.
- Integrated slack pane for sending messages and displaying diagnostics.
- Built system pane for process introspection and version information.
- Launched tools pane for browsing and invoking MCP tools.
- Set up websocket pane for connecting to the /ws/echo service.
2026-05-16 19:23:30 -05:00

35 lines
952 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CxWebApp</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<header>
<h1>CxWebApp</h1>
<p class="subtitle">C++ Web Application</p>
</header>
<main>
<section class="card">
<h2>Items</h2>
<div id="items-list">Loading…</div>
<form id="add-form">
<input type="text" id="item-name" placeholder="Name" required>
<input type="text" id="item-desc" placeholder="Description">
<button type="submit">Add Item</button>
</form>
</section>
<section class="card">
<h2>Health</h2>
<pre id="health">Checking…</pre>
</section>
</main>
<script src="/static/js/app.js"></script>
</body>
</html>