-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (50 loc) · 2.13 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<base href="/PWA/">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="Description" content="Author: Joice Paz, PWA to create notes">
<meta name="theme-color" content="#607d8b">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="My Notes">
<link rel="apple-touch-icon" href="img/icons/icon-152x152.png">
<meta name="msapplication-TileImage" content="img/icons/icon-144x144.png">
<title>My Notes</title>
<link rel="stylesheet" href="css/colors.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="manifest" href="manifest.json">
<script src="https://www.gstatic.com/firebasejs/4.8.1/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyDkh-9iEDaFaZwEfeTRVTmzQFiTSXeSnMs",
authDomain: "notes-61f00.firebaseapp.com",
databaseURL: "https://notes-61f00.firebaseio.com",
projectId: "notes-61f00",
storageBucket: "",
messagingSenderId: "689337292917"
};
firebase.initializeApp(config);
</script>
<script src="js/object.observe.polyfill.js"></script>
<script src="js/array.observe.polyfill.js"></script>
<script src="js/scripts.js"></script>
<script src="js/push.js"></script>
</head>
<body class="grey lighten-5 blue-grey-text">
<header id="header" class="container grey lighten-2">
<h1>My Notes</h1>
</header>
<div id="content" class="container grey lighten-3">
<p>Add your notes</p>
<form id="form-add-note" class="row">
<input type="text" placeholder="Type here" class="col-2 white"/>
<input type="submit" value="+" class="blue-grey white-text col-1"/>
</form>
<ul id="notes"></ul>
</div>
</body>
</html>