-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
35 lines (35 loc) · 1.01 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<title>SummerIce ☀️🧊</title>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700&display=swap" rel="stylesheet" />
</head>
<body class="popup">
<div id="header">
<h1>SummerIce ☀️🧊</h1>
<a href="#" id="settingsLink">Settings</a>
</div>
<div id="summary-area"></div>
<div id="spinner" class="spinner"></div>
<div
id="timeout-message"
style="
display: none;
font-size: 18px;
color: black;
text-align: center;
padding: 20px;
margin-bottom: 40px;
background-color: #ffff00;
border-radius: 10px;
margin-top: 20px;
"
>
It takes longer than usual. You can try waiting a bit longer or try again.<br />
OpenAI API sometimes gets stuck and retrying usually works.
</div>
<script src="popup.js"></script>
</body>
</html>