-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (39 loc) · 1.45 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">
<title>timetrack</title>
<link rel="manifest" href="/manifest.json">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<meta name="theme-color" content="white"/>
</head>
<body class="fullscreen">
<div class="container" id="id-table-search">
<h1 class="title">Timetrack</h1>
<input id="task-name" class="form-control" type="text" value="" placeholder="Task name"/>
<input id="task-description" class="form-control" type="text" value="" placeholder="Task description"/>
<div id="search-active"></div>
<input id="task-update" class="btn btn-success block" type="button" />
</div>
<div class="pb" id="progress-bar"></div>
<div class="container">
<button id="go-prev" class="btn btn-info">prev</button>
<button id="go-date" class="btn btn-info"></button>
<button id="go-next" class="btn btn-info">next</button>
</div>
<div class="container">
<table id="id-table-history" class="table sash"></table>
</div>
<div class="container">
<input type="text" id="task-url" placeholder="Task url prefix">
<input type="text" id="task-catch" placeholder="Task catch string">
</div>
<div class="container">
<input type="date" id="start">
<button id="report" type="button">Download</button>
<input type="date" id="end">
</div>
<script type="module" src="js/main.js"></script>
</body>
</html>