-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (34 loc) · 1.43 KB
/
index.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
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Caveat:[email protected]&family=Lexend+Peta:[email protected]&family=Lilita+One&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Tilt+Neon&display=swap" rel="stylesheet">
<script src="test-helpers.js"></script>
<script src="app.js" type="module" defer></script>
<script src="app.test.js" type="module" defer></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main class="page-container">
<h1 class="main-header">GPT CLONE</h1>
<div class="chat-container">
<section class="conversation-output">
<p>How can I help you today?</p>
</section>
<form class="form-container">
<!-- <div class="api-container">
<label for="apikey">Enter your api key:</label>
<input id="apikey" name="apikey" type="text" placeholder="Enter API key...">
</div> -->
<!-- <label for="user-request">Enter your message:</label> -->
<input placeholder="Ask GPT..." id="user-request" name="user-request" >
<button id="send-button">SUBMIT</button>
</form>
</div>
</main>
</body>
</html>