whtet's picture
Update templates/index.html
a915ce2 verified
raw
history blame contribute delete
847 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chatbot</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<div class="chat-container">
<div class="chat-header">
<button class="back-button">&larr;</button>
<span>Chat</span>
</div>
<div class="chat-box" id="chatbox"></div>
<div class="input-area">
<button id="mic-button">🎤</button>
<input type="text" id="user-input" placeholder="Write a message...">
<button id="send-button" style="display: none;">&#10148;</button>
</div>
</div>
<script src="{{ url_for('static', filename='js/script.js') }}"></script>
</body>
</html>