forked from giosilvi/GPT-Prompter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistory.html
70 lines (63 loc) · 3.22 KB
/
history.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
<!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="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>History of prompts.</title>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="logoimage" style="display:flex; padding: 40px;">
<img src="icons/iconA128.png">
</div>
<div class="typewriter">
<h1 style="margin-bottom: -1rem;" >
History: Prompts & Completions
</h1>
<br>
<span style="font-style: italic;">
Here you can see the history of your prompts with completion and costs.
</span>
</div>
</div>
<div style="padding-left: 30px" class="btn-group" role="group" aria-label="button_option">
<button type="button", id="export_to_json" class="save" style="white-space: nowrap; font-size: 1rem; padding:0px">Export
as JSON file</button>
</div>
<!-- <ol id="custom-prompts"></ol> -->
<div class="btn-group" role="group" aria-label="button_option">
<button type="button" id="delete-all" class="save"
style="white-space: nowrap; font-size: 1rem; padding:0px">Delete All</button>
</div>
<div style="float:right">
<form action="https://www.paypal.com/donate" method="post" target="_top">
<input type="hidden" name="business" value="FAXAR6TAH7P8U" />
<input type="hidden" name="no_recurring" value="0" />
<input type="hidden" name="item_name" value="If you find GPT-Prompter useful consider making a donation to help keep it free for everybody!
Thank you!" />
<input type="hidden" name="currency_code" value="EUR" />
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" title="PayPal - The safer, easier way to pay online!" alt="Donate with PayPal button" />
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" />
</form>
</div>
<!-- add a new line -->
<div style="height:20px"></div>
<div style="padding-left: 18px " >
<span class="col-sm-6" style="white-space: nowrap;" id="totCost">
</div>
<div style="height:20px"></div>
</div>
<input id="promptsearch" type="text" class="form-control form-control-dark text-bg-dark list-group-item"
placeholder="Search inside your prompts..." aria-label="Search">
<div style="height:30px"></div>
<ul id="history-of-prompts" class="list-group-item" style="padding-left:30px; padding-right:30px;"> No prompts
executed.</ul>
</div>
<script src="history.js"></script>
</body>
</html>