-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
54 lines (49 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>Webcenter Timecard Filler</title>
<style type="text/css">
#container {
padding: 16px;
width: 225px;
}
.error {
visibility: hidden;
color: #d7413b;
margin: 16px 0;
}
#submit-btn {
padding: 15px;
border-radius: 14px;
color: #d7413b;
box-shadow: 1px 1px 1px 1px black;
}
</style>
<script src="popup.js"></script>
</head>
<body>
<div id="container">
<h1>Webcenter Filler</h1>
<div>
<label for="start">Punch In:</label>
<input type="time" id="start">
</div>
<div>
<label for="lunch-start">Lunch Out:</label>
<input type="time" id="lunch-start">
</div>
<div>
<label for="lunch-end">Lunch In:</label>
<input type="time" id="lunch-end">
</div>
<div>
<label for="end">Punch Out:</label>
<input type="time" id="end">
</div>
<div class="error">Make sure to fill out all fields</div>
<div>
<button id="submit-btn">Fill Timecard</button>
</div>
</div>
</body>
</html>