-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (58 loc) · 2.17 KB
/
index.html
File metadata and controls
64 lines (58 loc) · 2.17 KB
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
<!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="todo-info col-md-12">
<!-- Todo Items rendered here -->
</div>
</div>
<br>
<div class="row">
<div class="col-md-10">
<!-- Add Todo -->
<div class="add-todo">
<div class="form-group">
<div class="input-group">
<span class="input-group-btn">
<button type="button" class="todo-add btn btn-primary input-lg">Add</button>
</span>
<input type="text" class="todo-input form-control input-lg" placeholder="What do you need to get done?" />
</div>
</div>
</div>
<!-- /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="./dist/app.js"></script>
</body>
</html>