forked from jaikathuria/todo-es6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·71 lines (64 loc) · 2.36 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
<html class="gr__jaikathuria_github_io">
<head>
<meta charset="utf-8">
<title>ToDO</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body data-gr-c-s-loaded="true">
<div id="root">
<div data-reactroot="" class="container glass md-margin-top-10">
<div class="row">
<div class="col-xs-12 clock">
<div class="jumbotron-text text-center">
11:02
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="input-heading">WHAT ARE YOUR TODO'S FOR TODAY ?</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-offset-1 col-sm-10 col-md-offset-2 col-md-8 col-lg-offset-3 col-lg-6"><input name="todo" class="todo" value=""></div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-offset-1 col-sm-10 col-md-offset-2 col-md-8 col-lg-offset-3 col-lg-6">
<ul class="todo-list">
<li class="todo-item">
<div>
<div class="todo-title">
Complete TODO App with Redux
</div>
<div class="todo-button pull-right hover-light">
<i class="fa fa-trash-o"> </i>
</div>
<div class="todo-button pull-right hover-light">
<i class="fa fa-check"> </i>
</div>
</div>
</li>
<li class="todo-item">
<div>
<div class="todo-title done">
DLND Project-2
</div>
<div class="todo-button pull-right hover-light">
<i class="fa fa-trash-o"> </i>
</div>
<div class="todo-button pull-right hover-light">
<i class="fa fa-undo"> </i>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>