36 lines
990 B
HTML
36 lines
990 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Chat Interface</title>
|
||
|
<link rel="stylesheet" href="css/styles.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div class="main-container">
|
||
|
<!-- Linke Seitenleiste für Chat-Sessions -->
|
||
|
<div class="sidebar" id="chatSidebar">
|
||
|
<h3>Gespeicherte Chats</h3>
|
||
|
<button id="newChatButton">Neuer Chat</button>
|
||
|
<div id="chatList"></div>
|
||
|
</div>
|
||
|
|
||
|
<!-- Chatbereich -->
|
||
|
<div class="chat-container">
|
||
|
|
||
|
|
||
|
<div class="chat-box" id="chatBox">
|
||
|
<!-- Nachrichten werden hier angezeigt -->
|
||
|
</div>
|
||
|
<div class="chat-input-container">
|
||
|
<textarea id="chatInput" class="chat-input" placeholder="Schreibe eine Nachricht..."></textarea>
|
||
|
<button id="sendButton" class="chat-send-button">Senden</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<script src="js/chat.js"></script>
|
||
|
</body>
|
||
|
</html>
|