-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (49 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>pancakes</title>
<meta name="author" content="pajamaclaws21">
<meta name="description" content="pancakes: an Ai Fanfic App by pajamaclaws21" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="css/style.css">
<script src="js/main.js"></script>
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<div id="intro">
<h2>Ai FANFIC APP</h2>
<p>
made by pajamaclaws21 utilizing the cohere ai api.
</p>
<div style="height: 3vh"></div>
<input id="APIKEY" type="text" placeholder="Cohere API Key" />
<div style="height: 3vh"></div>
<button onclick="letsago()">continue</button>
<div style="height: 3vh"></div>
<small><small>
<p>
source code for this app can be found on my
<a href="https://github.com/pajamaclaws21/pancakes/tree/main">github</a>.
</p>
</small></small>
</div>
<div id="main" hidden>
<input id="ficType" type="text" list="shipOptions" placeholder="gay"></input>
<datalist id="shipOptions">
<option value="het">het</option>
<option value="slash">slash</option>
<option value="femslash">femslash</option>
<option value="straight">straight</option>
<option value="gay">gay</option>
</datalist>
<br>
<input id="relType" type="text" placeholder="two boys, Name1 and Name2"></input>
<br>
<button onclick="genPrompt()">generate</button>
<p id="text">
Here's where the fanfic will appear!
</p>
</div>
</body>
</html>