-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
96 lines (96 loc) · 2.55 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="options">
<div class="row-item">
<label>Entry:</label>
<input
id="entry_hours"
next-focus="entry_minutes"
class="input-item time"
type="text"
placeholder="00"
min="0"
max="23"
maxlength="2"
/><span class="colon">:</span
><input
id="entry_minutes"
next-focus="exit_hours"
class="input-item time"
type="text"
placeholder="00"
min="0"
max="59"
maxlength="2"
/>
</div>
<div class="row-item">
<label> Exit:</label>
<input
id="exit_hours"
next-focus="exit_minutes"
class="input-item time"
type="text"
placeholder="00"
min="0"
max="23"
maxlength="2"
/><span class="colon">:</span
><input
id="exit_minutes"
class="input-item time"
type="text"
placeholder="00"
min="0"
max="59"
maxlength="2"
/>
</div>
<div class="row-item fullwidth">
<label
><span class="info-icon">
<span class="info-content">
You can enter part of the project name. As an example, if your
project name is <b>My Project 14567</b>,<br />
you can enter <b>14567</b>.
</span>
</span>
Project <i>(optional)</i>:</label
>
<input
id="project_name"
class="input-item"
type="text"
placeholder="Enter name/number"
/>
</div>
<div class="row-item radio-row">
<input
id="errors_days"
value="errors_days"
name="days_type"
type="radio"
checked
/>
<label for="errors_days">Missing Days</label>
<input
id="selected_days"
value="selected_days"
name="days_type"
type="radio"
/>
<label for="selected_days">Selected Days</label>
</div>
<div class="row-item checkbox">
<input type="checkbox" id="remember" />
<label for="remember"> Remember for next time</label>
</div>
<button id="auto_fill_btn">Auto fill</button>
</div>
<script src="popup.js"></script>
</body>
</html>