forked from TTLApp/time-to-leave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (43 loc) · 1.86 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Time To Leave</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
<!-- Scripts -->
<script>
delete module.exports
</script>
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
<script src="js/calendar.js" charset="utf-8"></script>
</head>
<body>
<div id="calendar" class="container"></div>
<br>
<br>
<br>
<br>
<div class="footer-pre">
<table class="month-summary">
<tr>
<tr class="month-total-row">
<td class="month-total-text" title="How many working days there's in the month">Total of working days</td>
<td class="month-total-time" title="How many working days there's in the month"><input type="text" id="month-working-days" size="5" disabled></td>
<td class="month-total-text" title="How many hours you logged in this month">Month Total</td>
<td class="month-total-time" title="How many hours you logged in this month"><input type="text" id="month-total" size="8" disabled></td>
<td class="month-total-text" title="Balance up until today for this month. A positive balance means extra hours you don't need to work today (or the rest of the month).">Month Balance</td>
<td class="month-total-time" title="Balance up until today for this month. A positive balance means extra hours you don't need to work today (or the rest of the month)."><input type="text" id="month-balance" size="8" disabled></td>
</tr>
</tr>
</table>
</div>
<div class="footer">
<button class="punch-button" id="punch-button" disabled>
<img src="assets/fingerprint.svg" height="36" width="36"></img>
Punch time
</button>
</div>
</body>
</html>