forked from borntonguyen/GruntledJune
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
36 lines (33 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" />
<title>Gruntled</title>
</head>
<body>
<div class="header">
<div class="icon">
<img src="img/icon.png" alt="icon" width="16" height="16" />
</div>
<button id="close"><i class="fas fa-times"></i></button>
</div>
<div class="tabs">
<div class="sidebar">
<button class="tab-btn tab-btn-active" data-for-tab="1">Record</button>
<button class="tab-btn" data-for-tab="2">Saves</button>
</div>
<div class="content">
<div class="tab-content tab-content-active" data-tab="1">
<div>
<button id="start" class="button-78" role="button">Start Camera</button>
</div>
</div>
<div class="tab-content" data-tab="2">
<h3>Tab 2</h3>
</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>
<div class="recording-indicator"></div>