-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (65 loc) · 2.48 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>PTO Management</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<script src="src/helper.js" defer></script>
<script src="src/setup.js" defer></script>
</head>
<body>
<div class="container">
<!-- Calandar -->
<div class="window calandar-month">
<!-- Month / Year -->
<div class="heading" id="month-div">
<button id="month-left" class="arrow" onclick="WINDOW.calandar.changeMonth(-1)">◄</button>
<span id="month-title">Year</span>
<button id="month-right" class="arrow" onclick="WINDOW.calandar.changeMonth(+1)">►</button>
</div>
<table class="month">
<tr class="weekdays">
<th>Mo</th>
<th>Tu</th>
<th>We</th>
<th>Th</th>
<th>Fr</th>
<th>Sa</th>
<th>Su</th>
</tr>
</table>
<table id="days" class="days"></table>
</div>
<!-- Settings -->
<div class="window settings">
<div class="heading title">Settings</div>
<hbox>
<p class="label">Max PTO</p>
<input id="max-pto">
</hbox>
<hbox>
<p class="label">Starting Hours</p>
<input id="init-hours">
</hbox>
<hbox>
<p class="label">Time Accrued</p>
<input id="hours-accrued">
</hbox>
<hbox>
<p class="label">Time off</p>
<input id="hours-off">
</hbox>
<hbox>
<p class="label">Payroll</p>
<select id="payroll-type">
<option value="bi-weekly">Bi-Weekly</option>
<option value="semi-monthly">Semi-Monthly</option>
</select>
</hbox>
</div>
</div>
</body>
</html>