-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
33 lines (33 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Focii</title>
<link rel="stylesheet" type="text/css" href="popup.css">
<script src="popup.js" type="module"></script>
</head>
<body>
<div class="popup-container">
<h1 class="extension-header" id="extension-header">Focii</h1>
<div class="second-container">
<div class="main-btn-container">
<img src="icons/pause-btn.png" id="pause-btn"></img>
</div>
<div class="keyword-input-container">
<textarea class="keyword-input" id="keyword-input" placeholder="Enter keywords related to study topic"></textarea>
</div>
</div>
<div class="threshold-container">
<button class="focus-btn" id="focus-btn">Set Keywords</button>
<!-- <p class="confirmation-message" id="confirmation-message">Status: </p> -->
</div>
<div class="pomodoro-container">
<!-- <div>
Timer
</div> -->
</div>
</div>
</div>
</body>
</html>