-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.html
63 lines (52 loc) · 1.71 KB
/
todo.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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="links.css">
<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> Your existing TODOs </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 </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">Edit</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">Edit</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">Edit</button> <td>
</tr>
</tbody>
</table>
</div>
</body>
</head>
</html>