ayush2917 commited on
Commit
aeb0e4c
·
verified ·
1 Parent(s): 6456400

Create chat.html

Browse files
Files changed (1) hide show
  1. templates/chat.html +14 -0
templates/chat.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {% extends 'base.html' %}
2
+ {% block content %}
3
+ <h1>Chat with Little Krishna</h1>
4
+ <div id="chat-container">
5
+ <div id="chat-messages"></div>
6
+ <form id="chat-form">
7
+ <input type="text" id="message-input" placeholder="Say something to Krishna..." required>
8
+ <button type="submit">Send</button>
9
+ </form>
10
+ <button id="comic-button">Tell me a story!</button>
11
+ <div id="comic-strip"></div>
12
+ </div>
13
+ <script src="/static/js/chat.js"></script>
14
+ {% endblock %}