-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoggo.html
More file actions
96 lines (82 loc) · 3.05 KB
/
doggo.html
File metadata and controls
96 lines (82 loc) · 3.05 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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pepe GPT</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="gpt.css" rel="stylesheet">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<script src="gpt.js"></script>
<link rel="shortcut icon" href="pepe5088.jpg" type="image/x-icon">
<meta property="og:title" content="PepeGPT">
<meta property="og:description" content="A parody of ChatGPT where you can talk to pepe.">
<meta property="og:image" content="https://catgpt.sd3.in/icon.png">
<meta property="og:url" content="https://catgpt.sd3.in/">
<meta name="twitter:card" content="summary">
<meta property="og:site_name" content="PepeGPT">
<!-- <meta name="twitter:image:alt"
content="The icon for pepeGPT, denoting a white cat with a long tail that wraps around it.">
<meta name="twitter:creator" content="@sushovande"> -->
</head>
<body class="">
<div class="container">
<nav>
<div class="logo">
<p>Doggo GPT</p>
</div>
<a id="delbtn" href="#"><span class="material-symbols-outlined">delete</span>
<span class="navlabel">Clear Conversations</span></a>
<a id="lightmodebtn" href="#"><span id="lightmodeicon" class="material-symbols-outlined">light_mode</span>
<span id="lightmodelabel" class="navlabel">Light Mode</span></a>
<a id="infobtn" href="#"><span class="material-symbols-outlined">info</span>
<span class="navlabel">About & FAQ</span></a>
</nav>
<main>
<section class="chatbox">
<div class="taholder">
<textarea rows="1" id="chatarea"></textarea>
</div>
<div class="sendbtn">
<button><span class="material-symbols-outlined">
send
</span></button>
</div>
</section>
</main>
</div>
<dialog id="aboutDialog">
<h2>DoggoGPT</h2>
<p>This is a parody of <a target="_blank" href="https://chat.openai.com/chat">ChatGPT</a>/catgpt,
with apologies to the original authors.
</p>
<p>Note: no data is collected, and there are no analytics cookies either. All processing
happens within the browser itself. And note: there is no AI involved 😛.
</p>
<form method="dialog">
<div><button id="dialogclosebtn" value="default">
<span class="material-symbols-outlined">close</span>
<span class="navlabel">Close</span></a></div>
</form>
</dialog>
<template id="humanchatentry">
<section class="human history">
<div class="icon">🧑🏽</div>
<div class="chat">
<p></p>
</div>
</section>
</template>
<template id="catchatentry">
<section class="cat history">
<div class="icon">🐶</div>
<div class="chat">
<p></p>
</div>
</section>
</template>
</body>
<script>
window.onload = registerStuff();
</script>
</html>