-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (46 loc) · 2.09 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Timesheet Generator</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
</head>
<body>
<div class="container text-center mt-3">
<div class="row">
<div class="col">
<h1>Timesheet Generator</h1>
</div>
</div>
<div class="row mb-2">
<div class="col">
<label for="start-date">Start of pay period</label>
<input type="date" name="date" id="start-date" />
</div>
</div>
<div class="row mb-2">
<div class="col">
<label for="employees">Employee names</label><br />
<textarea id="employees" rows="4" cols="20"></textarea>
</div>
</div>
<div class="row mb-2">
<div class="col">
<label for="auto-close">Automatically close the print window</label>
<input type="checkbox" id="auto-close" name="auto-close" checked />
</div>
</div>
<div class="row">
<div class="col">
<button type="button" id="print" class="btn btn-primary">Print</button>
</div>
</div>
<div class="row mt-4">
<p class="text-center">Set "Orientation" to "Landscape" and "Two-sided printing" to "Flip on Short Edge" in the printer settings.</p>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<script src="./main.js"></script>
</body>
</html>