-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
34 lines (34 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>WHMCS Alerts</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="container">
<h2>WHMCS Alerts</h2>
<div class="toggle-group">
<label class="switch">
<input type="checkbox" id="toggleCustomerReply">
<span class="slider round"></span>
</label>
<span>Customer-Reply Alerts</span>
</div>
<div class="toggle-group">
<label class="switch">
<input type="checkbox" id="toggleOpen">
<span class="slider round"></span>
</label>
<span>Open Alerts</span>
</div>
<div class="github-container">
<a href="https://github.com/yoursorrow/whmcs-firefox-alerts" target="_blank" class="github-link">
<img src="icons/github.png" alt="GitHub" class="github-icon" />
<span class="github-text">GitHub</span>
</a>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>