-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
32 lines (26 loc) · 941 Bytes
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>AutoGMeet+</title>
<link id="theme-style" rel="stylesheet" href="css/pink-mode.css">
</head>
<body>
<img src="images/icon.png" alt="Logo">
<h1>AutoGMeet+</h1>
<p>Google Chrome Extension for ones who love to focus and miss the meeting!</p>
<label for="mode-switch">Dark theme:</label>
<input type="checkbox" id="mode-switch">
<p></p>
<label for="mode-switch-auto">Inherit from Chrome:</label>
<input type="checkbox" id="mode-switch-auto">
<p></p>
<label for="time-join-value">Join before: </label>
<span id="time-join-value"></span>
<label for="time-join">min.</label>
<input type="range" id="time-join" min="-2" max="1">
<button id="powerButton">Stop</button>
<label for="today-date">Today's Date</label><p></p>
<span class="span_date" id="today-date"></span>
<script src="js/popup.js"></script>
</body>
</html>