18 lines
422 B
HTML
18 lines
422 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Projekt-LLM Chat</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div id="chat-container">
|
|
<input id="project" placeholder="Projektname">
|
|
<div id="messages"></div>
|
|
<input id="message" placeholder="Schreibe eine Nachricht">
|
|
<button onclick="sendMessage()">Senden</button>
|
|
</div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|