forked from Atithi360/IIITA-Click-n-Connect-2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
timer.html
41 lines (33 loc) · 1.39 KB
/
timer.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<script src="JavaScript/timer.js"></script>
<title>Timer Settings</title>
<link rel="stylesheet" href="CSS/options.css">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<a class="back" href="index.html"> < back</a>
<!-- <div class="container">
<div class='info'> -->
<h3>Choose tabs and time to close your session</h3>
<form>
<input type="radio" id="op1" name="closingTabs" value="all"/>
<label for="op1"><span></span>All tabs in all windows</label>
<br>
<input type="radio" id="op2" name="closingTabs" value="allCurrentWindow"/>
<label for="op2"><span></span>All tabs in current window</label>
<br>
<input type="radio" id="op3" name="closingTabs" value="recent"/>
<label for="op3"><span></span>All tabs opened after timer set</label>
<br>
<input type="radio" id="op4" name="closingTabs" value="this"/>
<label for="op4"><span></span>This tab only</label>
<br>
<br>
<input type="number" name="time" placeholder="Time in minutes" min="0" value="0" required><b> minutes.</b> <br>
<br>
<input type="submit" id="apply" value="Apply">
</form>
</body>
</html>