-
Notifications
You must be signed in to change notification settings - Fork 1
/
jquery.html
35 lines (35 loc) · 1.19 KB
/
jquery.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<!-- Google Material Icons for the send message icon -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="script-jquery.js"></script>
<title>OpenAI Chat</title>
</head>
<body>
<!-- full page chat app -->
<div class="chat-container">
<!-- messages section -->
<div class="messages-container">
<div id="messages"></div>
</div>
<!-- input section -->
<div class="input-container">
<form id="input-message-form">
<input type="text" placeholder="Type a message" name="input-text"/>
<div class="send-button">
<button type="submit">
<span class="material-icons">
send
</span>
</button>
</div>
</form>
</div>
</div>
</body>
</html>