-
Notifications
You must be signed in to change notification settings - Fork 65
/
popup.html
35 lines (31 loc) · 1.37 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 lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>LeechBlock</title>
<link href="/jquery-ui/jquery-ui.min.css" rel="stylesheet">
<link href="/popup.css" rel="stylesheet">
<link href="/icons/leechblock32.ico" rel="icon" type="image/x-icon">
<link href="/icons/leechblock32.ico" rel="shortcut icon" type="image/x-icon">
<link id="themeLink" rel="stylesheet">
</head>
<body>
<p><img width="200" height="35" src="/images/leechblock_logo.svg" class="logo" alt="LeechBlock logo" title="LeechBlock"><p>
<div id="button-container" class="ui-widget">
<button id="options" type="button">Options</button>
<button id="lockdown" type="button">Lockdown</button>
<button id="override" type="button">Override</button>
<button id="stats" type="button">Statistics</button>
<br><br>
<button id="addSites" type="button">Add Sites</button>
<button id="cancelOverride" type="button">Cancel Override</button>
<button id="resetRollover" type="button">Reset Rollover Time</button>
<button id="discardTime" type="button">Discard Remaining Time</button>
<br><br>
<button id="onlineSupport" type="button">Online Support</button>
</div>
<script src="/popup.js"></script>
</body>
</html>