-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
63 lines (51 loc) · 1.4 KB
/
options.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
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head><title>Pomodoro Timer</title></head>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<a style = "font-size: 20px; font-family: Verdana">Timer: </a>
<a id = "time" style = "font-size: 20px; font-family: Verdana"> 0:00 </a>
<br></br>
<div id = "element1">
<form>
<a> Minutes: </a>
<input id = "workMinutes" type="text" name="Time" value = "0"><br>
<a> Seconds: </a>
<input id = "workSeconds" type="text" name="Time" value = "15"><br>
</form>
<button id = "setWorkDuration">Set Work Duration</button>
</div>
<div id = "element1">
<form>
<a> Minutes: </a>
<input id = "breakMinutes" type="text" name="Time" value = "0"><br>
<a> Seconds: </a>
<input id = "breakSeconds" type="text" name="Time" value = "10"><br>
</form>
<button id = "setBreakDuration">Set Break Duration</button>
</div>
<br></br>
<a> Start Time: </a>
<a id = "minsec"></a>
<br></br>
<a> Current Time: </a>
<a id = "minsec2"></a>
<br></br>
<a> Work Duration: </a>
<a id = "test">0</a>
<a> seconds </a>
<br></br>
<a> Break Duration: </a>
<a id = "break">0</a>
<a> seconds </a>
<div></div>
<div id="status"></div>
<br></br>
<button id ="start" class = "buttons">Start</button>
<button id ="pause" class = "buttons">Pause</button>
<button id ="stop" class = "buttons">Abort</button>
<script src="options.js"></script>
</body>
</html>