-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
111 lines (99 loc) · 3.58 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<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="icon" type="image/svg+xml" href="./favicon.svg">
<link rel="alternate icon" href="./favicon.ico">
<link rel="stylesheet" lang="sass" href="./sass/style.sass">
<script src="./js/prompts.loading.js" type="module" defer></script>
<script src="./js/prompts.generator.js" type="module" defer></script>
<script src="./js/inputs.js" type="module" defer></script>
<script src="./js/inputs.pronouns.js" type="module" defer></script>
<script src="./js/inputs.settings.js" type="module" defer></script>
<script src="./js/fields.js" type="module" defer></script>
<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=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<script>
console.log("hey there! you've opened the console. lots of debug stuff here.\n" +
"in terms of files though: everything's been minified. saves space and all of that.\n" +
"if you want to look at the original source code, stop by the github! (it's a mess) https://github.com/12beesinatrenchcoat/incorrect-quotes-generator\n" +
"anyways, thanks for stopping by! <3"
);
</script>
<title>yet another incorrect quotes generator</title>
</head>
<body>
<nav>
<span id="title">yet another incorrect quotes generator</span>
<a href="https://github.com/12beesinatrenchcoat/incorrect-quotes-generator">source code</a>
</nav>
<noscript>hey! this thing uses javascript, which doesn't seem to be enabled. please enable
javascript!</noscript>
<div>
<h1>get some prompts</h1>
<span id="prompt-count">no prompts</span> enabled!
</div>
<div id="prompt-setup" class="columns">
<div id="prompt-set-selector" class="flex-column">
<h2>prompt sets</h2>
<span id="prompt-sets-loading">loading...</span>
</div>
<div id="tag-list-container">
<h2>tags</h2>
<p id="tag-list-empty">this is where tags go... but there aren't any here yet.</p>
<div id="tag-list"></div>
</div>
<span>More prompts eventually...</span>
</div>
<h1>input some stuff</h1>
<div id="character-blocks">
</div>
<div class="center-wrapper">
<button id="remove-character" onclick="removeInput()">x</button>
<div class="rainbow-wrapper">
<button id="generate-quote" onclick="generateQuote()" disabled>do the thing!</button>
</div>
<button id="add-character" onclick="addInput()">+</button>
</div>
<h2>other settings</h2>
<div class="columns" id="settings">
<div class="flex-column">
<label>
<input type="checkbox" id="randomize">
Randomize character order
</label>
<label>
<input type="checkbox" id="update-output-fields" checked>
Update output on change
</label>
</div>
<div class="flex-column">
<label>
<input type="checkbox" id="character-range-toggle" disabled>
Use random number of characters
</label>
<label>
Use prompts with
<input type="number" id="prompt-characters-min" min=1 placeholder=1 step=1>
character
</label>
<label hidden=true>
...and a maximum of
<input type="number" id="prompt-characters-max" min=2 placeholder=2 step=1>
characters
</label>
</div>
</div>
<h1>output</h1>
<div id="output">
this is where the output goes.
</div>
<div id="output-about">
</div>
</body>
</html>