-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (92 loc) · 4.51 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Time Tracker</title>
<!--Bootstrap Stuff-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css" class="rel">
</head>
<body>
<nav class="bg-primary">
<ul class="nav justify-content-end container">
<li class="navbar-brand mr-auto text-light pl-2">Time Tracker</li>
<li class="nav-item">
<a class="nav-link" href="#" data-toggle="modal" data-target="#addnewcode">Add Code</a>
</li>
</ul>
</nav>
<div class="container mr-auto mt-4 text-center">
<div class="modal fade" tabindex="-1" role="dialog" id="addnewcode">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Add A Code</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="form-group border rounded p-4">
<label for="addcode">
<h3>Add Code</h3>
</label>
<span id="codeerror" class="d-block text-danger alert" style="min-height: 24px;"></span>
<input class="form-control m-auto" type="text" id="addcode"
placeholder="Add a Project Code" aria-describedby="addcodehelp">
<small id="addcodehelp" class="form-text text-muted">Add a Project Code</small>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button id="createTimeCode" class="btn btn-primary">Create Time
Code</button>
</div>
</div>
</div>
</div>
<form class="d-flex flex-column justify-content-around">
<div class="form-group border rounded p-4">
<label for="addcode">
<h3>Select Code</h3>
</label>
<span id="stamperror" class="d-block text-danger alert" style="min-height: 24px;"></span>
<select class="form-control m-auto" id="timecode" aria-describedby="timecodehelp">
<option value="">Select Time Code</option>
</select>
<small id="timecodehelp" class="form-text text-muted">Choose the project that this time stamp is
for</small>
<button id="createTimeStamp" class="btn btn-primary mt-2">Create Time Stamp</button>
</div>
</form>
<table class="table mt-4 table-striped" id="timecard">
<thead>
<tr>
<th scope="col">Code</th>
<th scope="col">Time In/Out</th>
<th scope="col">Duration</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<button id="clearTimeStamps" class="btn btn-danger mt-2">Clear Time Stamps</button>
</div>
<script src="./moment.js"></script>
<script src="./main.js"></script>
<script src="./timecodes.js"></script>
<script src="./timestamps.js"></script>
</body>
</html>