RidgeChat/ui/gui_files/html/index.html
2023-09-06 20:49:07 -06:00

31 lines
779 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RidgeChat</title>
<link rel="stylesheet" href="../css/styles.css">
</head>
<body>
<div id="container">
<div id="sidebar">
<!-- Sidebar content here -->
</div>
<div id="main">
<div id="header">
<!-- Header content here -->
</div>
<div id="chat-window">
<!-- Chat messages will be dynamically added here -->
</div>
<div id="user-input-section">
<input type="text" id="user-input" placeholder="Type your message...">
<button id="send-button" onclick="sendMessage()">
<!-- SVG or text for send button -->
</button>
</div>
</div>
</div>
<script src="../js/scripts.js"></script>
</body>
</html>