-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
108 lines (89 loc) · 2.82 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
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
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="shared.css">
<link rel="stylesheet" href="./options.css">
<title>Fill my timesheet | Options</title>
</head>
<body>
<header class="page-header">
<h1>Fill my timesheet</h1>
</header>
<div class="main">
<div class="container">
<p>
Fill my timesheet allows to quickly fill a timesheet report and avoid tedious repetitive manual entry.
</p>
<p>
Configure your most frequent time reports on the form below.
These reports will be available to select in the popup.
</p>
<h2>Add a new report</h2>
<div class="report-form">
<div class="col">
<label for="name">Report name*:</label>
</div>
<div class="col">
<input type="text" id="name" placeholder="Standard week schedule" required>
</div>
<div class="col">
<label for="timeIn">Time in:</label>
</div>
<div class="col">
<input type="text" id="timeIn" placeholder="e.g. 8:30">
</div>
<div class="col">
<label for="timeOut">Time out:</label>
</div>
<div class="col">
<input type="text" id="timeOut" placeholder="e.g. 17:00">
</div>
<div class="col">
<label for="comment">Daily comment:</label>
</div>
<div class="col">
<textarea id="comment" placeholder="e.g. 30 mins break taken" rows="3"></textarea>
</div>
<div class="col">Days:</div>
<div class="col">
<div class="day-select-container"></div>
</div>
<div class="col"></div>
<div class="col">
<button id="addReport">Add a time report</button>
<button id="cancelReport">Cancel</button>
</div>
</div>
<h2>My time reports</h2>
<ul class="time-reports">
<li class="message">
<div>Use the form to add a time report.</div>
</li>
<li class="time-report">
<div class="content">
<div class="name">Report name</div>
<div class="days">Mon, Tues, Wed</div>
<div class="time">8:30 => 17:30</div>
<div class="comment">Comment</div>
</div>
<div class="actions">
<button class="edit">Edit</button>
<button class="danger remove">Delete</button>
</div>
</li>
</ul>
</div>
</div>
<footer class="page-footer">
<div class="container">
<div class="secondary">Copyright (c) 2020 Marc-Ed Raffalli</div>
<a href="https://marc-ed-raffalli.github.io/en/projects/time-sheet-automation-chrome-extension"
target="_blank">About</a>
<a href="https://github.com/marc-ed-raffalli/fill-my-timesheet" target="_blank">Github</a>
</div>
</footer>
<script type="text/javascript" src="./shared.js"></script>
<script type="text/javascript" src="./options.js"></script>
</body>
</html>