-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.23 KB
/
index.html
File metadata and controls
34 lines (33 loc) · 1.23 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<title>OpenAI Chat App</title>
</head>
<body>
<div id="app" class="container">
<header class="chat-header">
<img class="logo" src="/channel-logo.jpg" height="120px" alt="channel logo">
</header>
<div>
<form class="input-area">
<label for="message" class="hidden">Ask a question:</label>
<input type="text" id="message" class="message-input" placeholder="How can I help?">
<button class="send-button" type="button">
<span class="icn-send material-symbols-outlined">send</span>
</button>
</form>
</div>
<div class="chat-window">
<div id="chat-reply" class="messages"></div>
</div>
<footer>
<div class="chat-header">@LearnWithNewton</div>
</footer>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>