forked from saurabhshalu/TaskTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
67 lines (52 loc) · 1.39 KB
/
index.php
File metadata and controls
67 lines (52 loc) · 1.39 KB
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
<?php include 'functions.php'; ?>
<!DOCTYPE html>
<html>
<head>
<title>Tracker</title>
<link rel="stylesheet" href="./extensions/bootstrap.min.css">
<link rel="stylesheet" href="./extensions/all.css">
<style>
.btn-col {
width: 38px;
}
</style>
</head>
<body>
<div class="container-fluid">
<header class="row">
<div class="col-xs-6">
<a href="https://www.youtube.com/VermaTechs" target="_blank">Welcome to Task Tracker!</a>
</div>
<div class="col-xs-6 text-right">
Total Time: <span id="tally"></span>
</div>
</header>
<div class="row">
<form id="form-new">
<div class="col-xs-10">
<input id="name" name="name" class="form-control" placeholder="Enter task name!">
</div>
<div class="col-xs-2 text-right">
<button type="submit" class="btn btn-block btn-success">Start</button>
</div>
</form>
</div>
<hr>
<table class="table table-bordered">
<thead>
<tr>
<th>Task</th>
<th>Start</th>
<th>End</th>
<th>Time</th>
<th colspan="2">Controls</th>
</tr>
</thead>
<tbody id="log"></tbody>
</table>
</div>
<script src="./extensions/jquery-3.3.1.min.js"></script>
<script src="atom.tracker.js"></script>
<script src="./extensions/bootstrap.min.js"></script>
</body>
</html>