-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.html
52 lines (52 loc) · 1.17 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
<!DOCTYPE html>
<html ng-lang="todo-app">
<head lang="en">
<meta charset="UTF-8">
<title>TODO LIST</title>
<link href="bootstrap.css" rel="stylesheet"/>
<link href="bootstrap-theme.css" rel="stylesheet"/>
<script src="angular.js"></script>
<script>
var todoApp = angular.module("todo", []);
</script>
</head>
<body>
<div class="panel">
<div class="page-header">
<h1>Adam's To Do List</h1>
</div>
<div class="input-group">
<input class="form-control"/>
<span class="input-group-btn">
<button class="btn btn-default">Add</button>
</span>
</div>
<table class="table table-striped">
<thead>
<tr>
<th>Description</th>
<th>Done</th>
</tr>
</thead>
<tbody>
<tr>
<td>Buy Flowers</td>
<td>No</td>
</tr>
<tr>
<td>Get Shoes</td>
<td>No</td>
</tr>
<tr>
<td>Collect Tickets</td>
<td>Yes</td>
</tr>
<tr>
<td>Call Joe</td>
<td>No</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>