-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (75 loc) · 2.57 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
<!DOCTYPE html>
<head>
<title> Overview </title>
<link rel="stylesheet" href="links.css">
<link rel="import" href="navigation.html">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<body>
<h1> Overview </h1>
<div class="container">
<div class="col-sm-3"> <a href="index.html"> Overview </a> <br> </div>
<div class="col-sm-3"> <a href="newTodo.html"> Create a new TODO </a> <br> </div>
<div class="col-sm-3"> <a href="todo.html"> Edit TODO </a> <br> </div>
<div class="col-sm-3"> <a href="legalInformation.html"> Legal Information</a> </div>
</div>
<div class="container">
<h3> <i>Your TODOs</i></h3>
<table class="table table-striped">
<thead>
<tr>
<th>Content</th>
<th>Deadline</th>
<th>Progress</th>
<th>Edit/Delete</th>
</tr>
</thead>
<tbody>
<tr>
<td>Beispielseite mit dem Bootstrap Framework anlegen</td>
<td>30. April 2016 23:55</td>
<td>20%</td>
<td>
<button type="button" class="btn btn-default">
<span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>
</button>
<button type="button" class="btn btn-default">
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
</button>
</td>
</tr>
<tr>
<td>TheGi Hausaufgaben erledigen</td>
<td>07. Mai 2016 23:55</td>
<td>35%</td>
<td>
<button type="button" class="btn btn-default">
<span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>
</button>
<button type="button" class="btn btn-default">
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
</button>
</td>
</tr>
<tr>
<td>Essen gehen</td>
<td>25. April 2016 21:30</td>
<td>0%</td>
<td>
<button type="button" class="btn btn-default">
<span class="glyphicon glyphicon-pencil" aria-hidden="true"></span>
</button>
<button type="button" class="btn btn-default">
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
</button>
</td>
</tr>
</tbody>
</table>
</div>
</body>
</head>
</html>