-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (84 loc) · 3.39 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/3.5.2/firebaseui.css" />
<link href="css/styles.css" rel="stylesheet">
<title>DoIt - Todo Application</title>
<!-- <link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet"> -->
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>DoIt!</h1>
<!-- loading animation (using css animation) https://loading.io/css -->
<div class="loading">
<div class="lds-ripple"><div></div><div></div></div>
</div>
<div id='login-container'>
</div>
<div id="main-container">
<div class='user-info'>
<!-- <div class='profile-pic'></div>
<div class='contact-info'>
<p>Lauryn Hill</p>
<p>[email protected]</p>
<a href='#' id='sign-out'>Signout</a>
</div> -->
</div>
<div class="form-container">
<form id="add-item" class="form">
<div class="form-group">
<input type="text" id="new-task" placeholder="Add item">
</div>
</form>
<div class="incomplete-tasks-count">
<span>Incomplete Tasks:</span><span id="count"> 0 </span>
</div>
</div>
<ul id="task-list">
<!-- hardcoded code tasks -->
<!-- <li id="123">
<label class='checkbox-inline'>
<input type='checkbox' name='items' />
<span class="task-label"> do laundry</span>
<a href="#" class='edit-task'>edit</a>
<a href="#" class='delete-task'>delete</a>
</label>
</li>
<li id="345">
<label class='checkbox-inline'>
<input type='checkbox' name='items' />
<span class="task-label"> grocery shopping</span>
<a href="#" class='edit-task'>edit</a>
<a href="#" class='delete-task'>delete</a>
</label>
</li>
<li id="345">
<label class='checkbox-inline'>
<input type='checkbox' name='items' />
<span class="taskLabel"> exercise </span>
<a href="#" class='edit-task'>edit</a>
<a href="#" class='delete-task'>delete</a>
</label>
</li> -->
<!-- end of hardcoded tasks -->
</ul>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<!-- Add firebase libraries -->
<script src="https://www.gstatic.com/firebasejs/7.2.1/firebase-app.js"></script>
<script src="https://cdn.firebase.com/libs/firebaseui/3.5.2/firebaseui.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.2.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.2.1/firebase-firestore.js"></script>
<!-- firebase libraries -->
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>