-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
34 lines (29 loc) · 1.04 KB
/
popup.html
File metadata and controls
34 lines (29 loc) · 1.04 KB
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
<!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="css/bootstrap.min.css">
<link rel="stylesheet" href="./popup.css" />
</head>
<body>
<div class="card">
<div class="card-body">
<div class="text-center">
<img id="logo" src="images/genie logo.png" />
<h1 class="card-title mb-2">Tabs Genie</h1>
<label class="mb-2">How often should I sort your tabs? (in seconds)</label>
<input id="frequencyInput" class="mb-2" type="number" />
<div id="error" class="mb-2"></div>
<button id="save" class="btn btn-primary mb-2">Save Sort Frequency</button>
<div id="configuration-success-message" class="alert alert-success d-none" role="alert">
Your configuration has been updated!
</div>
</div>
</div>
</div>
</body>
<script src="js/bootstrap.min.js"></script>
<script src="popup.js"></script>
</html>