-
Notifications
You must be signed in to change notification settings - Fork 6
/
hello.html
26 lines (26 loc) · 857 Bytes
/
hello.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Options</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<form>
<label for="defaultselect">Chose your ChatGPT Asisstant Profile:</label>
<select id="defaultselect" name="defaultselect">
<option value="custom1user1">Custom1 / User1</option>
<option value="custom2user2">Custom2 / User2</option>
<option value="custom3user3">Custom3 / User3</option>
</select>
</form>
<div id="response"></div>
<button id="copyButton">Copy answer to clipboard</button>
<textarea id="edit" name="edit" rows="10"></textarea>
<div class="button-container">
<button id="submitButton">Resubmit</button>
<button id="optionsButton">Options</button>
</div>
<script src="generate.js"></script>
</body>
</html>