forked from Gutoneitzke/chatgpt-with-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (55 loc) · 2.14 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Frage ChatGPT</title>
</head>
<body>
<div class="box-questions">
<div class="header">
<p>Frage ChatGPT nach alternativen Buchtiteln</p>
<p><label><a href="https://platform.openai.com/account/api-keys">API Key: </a></label>
<input type="text" id="api-key"></p>
<script>
var apiKey = document.getElementById("api-key"),
storage_key = "chatgpttoken";
apiKey.value = localStorage[storage_key];
</script>
</div>
<p id="status"></p>
<div id="history">
<!-- Hier steht die History vom Chat -->
</div>
<div class="footer">
<input type="text" id="message-input" placeholder="Buchtitel/Author..." onkeydown="pressMessage(event)">
</div>
</div>
<script src="main.js"></script>
<div class="sidecar">
<h3>Weitere Dienste</h3>
<ul>
<li><a href="https://www.goodreads.com/api/index#search.books">Goodreads API</a></li>
<li><a href="https://www.lovelybooks.de">Lovelybooks</a></li>
<li> </li>
<li><a href="https://ebooks.eumel.de/todo/index.html">Mein Bücherbord</a></li>
</ul>
<h3>Bücher Shops</h3>
<ul>
<li><a href="http://www.amazon.de">http://www.amazon.de</a></li>
<li><a href="http://www.thalia.de">http://www.thalia.de</a></li>
<li><a href="http://www.hugendubel.de">http://www.hugendubel.de</a></li>
<li class="last"><a href="http://www.buch.de">http://www.buch.de</a></li>
</ul>
<h3>Bücher Shops</h3>
<ul>
<li><a href="http://www.ebooks.de">http://www.ebooks.de</a></li>
<li><a href="http://www.neobooks.de">http://www.neobooks.de</a></li>
<li><a href="http://www.buecher.de">http://www.buecher.de</a></li>
<li class="last"><a href="http://www.xtme.de/tolino-gratis-ebooks-und-schnappchen/">http://www.xtme.de/tolino-gratis-ebooks-und-schnappchen/</a></li>
</ul>
</div>
</body>
</html>