-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpopup.html
45 lines (45 loc) · 1.02 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
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<style>
body {
min-width: 250px;
min-height: 250px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h2 {
margin: 0;
}
button {
padding: 8px 16px;
font-size: 13px;
min-width: 100px;
max-width: 90%;
border: none;
outline: none;
background-color: #1b9a59;
color: #fff;
margin-bottom:5px;
}
button#stop {
background-color:red;
color:white;
}
button#download {
background-color:yellow;
color:black;
}
</style>
</head>
<body>
<h2>WhatsApp Online Tracker</h2>
<br/>
<button id="start">Start</button>
<button id="stop">Stop</button>
<button id="download">Download CSV</button>
<script src="popup.js"></script>
</body>
</html>