forked from woutervdijke/CatGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (49 loc) · 2.28 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link href="style.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" rel="stylesheet" />
<title>DogeGPT</title>
<meta name="description" content="What if ChatGPT were a dog?">
</head>
<body>
<div id="container">
<div class="header">
<h1>DogeGPT</h1>
<p>What if ChatGPT were a dog?</p>
</div>
<div id="chatcontainer">
<div id="chat">
<div class="chat-bubble-container chat-gpt-bubble-container">
<div class="profile-picture"><img src="images/avatar.jpeg" height="100%" /></div>
<div class="chat-bubble chat-gpt-bubble">
Woof, woof woof woof, woof woof?
</div>
</div>
</div>
<div id="input-area">
<div id="input-container">
<form id="form">
<input type="text" placeholder="Type your message here" id="user-input" autocomplete="off" />
</form>
<a><i class="fas fa-paper-plane"></i></a>
</div>
<p class="disclaimer">DogeGPT is a fork of CatGPT by <a href="https://www.github.com/iamlooper"
target="_blank">Looper</a>. <a href="#"
onclick="handleInfoClick" id="infoBtn">Click here to learn more about this site</a>.</p>
<p class="disclaimer">Did DogeGPT make you smile? Donate to a charity for <a
href="https://secure.petsmartcharities.org/give/219478/#!/donation/checkout"
target="_blank">normal sized cats</a> or <a
href="https://support.worldwildlife.org/site/Donation2?df_id=12391&12391.donation=form1"
target="_blank">really big cats</a>.</p>
</div>
</div>
</div>
<script src="chatbot.js"></script>
</body>
</html>