Files
ClawdDotNet/EmbeddedUI/chat.html
T
RichardandClaude Opus 4.8 2fed388c99 Initial commit: ClawdDotNet
Import des bestehenden Projektstands in Git.
- .NET 10 WinForms Anwendung (Multi-Agent / Tool-System)
- .gitignore fuer Build-Artefakte, Secrets und Runtime-Daten ergaenzt

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-26 18:21:46 +02:00

28 lines
936 B
HTML
Raw Permalink 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 lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ClawdDotNet Chat</title>
<link rel="stylesheet" href="chat.css">
</head>
<body>
<div id="app">
<div id="chat-header">
<span id="chat-agent-name">Agent</span>
<div id="chat-header-actions">
<button id="btn-run-now" title="Jetzt ausführen">&#x25B6;</button>
<button id="btn-abort" title="Abbrechen" style="display:none;">&#x25A0;</button>
</div>
</div>
<div id="chat-messages"></div>
<div id="chat-input-area">
<textarea id="chat-input" placeholder="Nachricht eingeben..." rows="1"></textarea>
<button id="btn-send">Senden</button>
</div>
</div>
<script src="bridge.js"></script>
<script src="chat.js"></script>
</body>
</html>