-
Notifications
You must be signed in to change notification settings - Fork 0
/
checklist.html
49 lines (49 loc) · 1.81 KB
/
checklist.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
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>Getting Started Extension's Popup</title>
<link rel="stylesheet" href="style.css" media="screen" title="no title" charset="utf-8">
<script src="https://www.gstatic.com/firebasejs/3.6.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.6.2/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.6.2/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.6.2/firebase-messaging.js"></script>
<!--
- JavaScript and HTML must be in separate files: see our Content Security
- Policy documentation[1] for details and explanation.
-
- [1]: https://developer.chrome.com/extensions/contentSecurityPolicy
-->
<script type="text/javascript" src="checklist.js"></script>
</head>
<body>
<!-- <div>
<form>
<div class="form-group">
<label for="username">
Username
</label>
<input id="username" class="form-control" type="text" placeholder="username">
</div>
<div class="form-group">
<button class="btn btn-md btn-black btn-block" type="button" id="addUserBtn">Save user</button>
</div>
</form>
</div> -->
<h4>Checklist</h4>
<hr>
<ul id="checklist"></ul>
<form>
<div class="form-group">
<input class="form-control" id="newItem" type="text" placeholder="Add things you want to do">
</div>
<div class="form-group">
<button class="btn btn-md btn-black btn-block" type="button" id="addItemBtn">Add Item</button>
</div>
</form>
</body>
</html>