geethareddy's picture
Update templates/index.html
b766f6c verified
raw
history blame
600 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chef Bot</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="chat-container">
<div class="chat-header">Chef Bot</div>
<div class="chat-messages" id="chatMessages"></div>
<div class="chat-input">
<input type="text" id="userInput" placeholder="Type your message...">
<button>Send</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>