-
Notifications
You must be signed in to change notification settings - Fork 168
/
index.html
73 lines (62 loc) · 2.58 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TypeScript Todo List</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="header clearfix">
<h1>TypeScript Todo List</h1>
</div>
<div class="row">
<div class="panel panel-default clearfix">
<div class="panel-body">
<div class="row">
<div class="todo-list col-md-12">
<!-- Todo Items rendered here -->
</div>
</div>
<br>
<div class="row">
<div class="col-md-10">
<!-- Add Todo -->
<form class="add-todo">
<div class="form-group">
<div class="input-group">
<span class="input-group-btn">
<button type="submit" class="btn btn-primary input-lg">Add</button>
</span>
<input type="text" class="form-control input-lg" placeholder="What do you need to get done?" />
</div>
</div>
</form>
<!-- /Add Todo -->
</div>
<div class="col-md-2">
<!-- Clear completed button -->
<button class="clear-completed btn btn-sm btn-warning pull-right">Clear Completed</button>
<!-- /Clear completed button -->
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.22/system.js"></script>
<script type="text/javascript">
System.defaultJSExtensions = true;
System.import('TodoApp').then(function(module) {
new module.TodoApp(document, [
'Pick up drycleaning',
'Clean Batcave',
'Save Gotham'
]);
})
</script>
</body>
</html>