-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
50 lines (42 loc) · 1.8 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
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Water Wise</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="wave"></div>
<section id="landingView">
<h2 style="color: #70BDF2;">WaterWise</h2>
<p id="hydrationMessage">Keep yourself hydrated, the only way to perform with more energy</p>
<div class="field">
<input type="checkbox" class="switch" id="switch">
<label class="switch" for="switch"><i class="fas fa-power-off"></i></label>
</div>
<button id="settingsBtn">Settings</button>
<div id="reminderView">
<p id="reminderMessage">Calculating time until the next reminder...</p>
</div>
</section>
<section id="settingsView" class="settings">
<div style="display: flex; align-items: center;">
<div id="backBtn" class="back-button"> <i class="fa-solid fa-circle-left"></i></div>
<h3 style="margin-left: 10px;">Home</h3>
</div>
<label for="glassSize">Glass Size (ml):</label>
<input type="number" id="glassSize" value="250">
<label for="quantity">Total Quantity (L):</label>
<input type="number" id="quantity" value="2" step="0.1">
<label for="startTime">Start Time (HH:MM):</label>
<input type="time" id="startTime" value="09:00">
<label for="endTime">End Time (HH:MM):</label>
<input type="time" id="endTime" value="21:00">
<br>
<button id="saveSettingsBtn">Save Settings</button>
</section>
<script src="popup.js"></script>
</body>
</html>