-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (52 loc) · 2.04 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/">
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/colors.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link rel="manifest" href="manifest.json">
<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="myNotes">
<link rel="apple-touch-icon" href="images/icons/icon-152x152.png">
<meta name="msapplication-TileImage" content="images/icons/icon-144x144.png">
<meta name="msapplication-TileColor" content="#607d8b">
<meta name="theme-color" content="#607d8b">
<script src="https://www.gstatic.com/firebasejs/4.3.1/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyCGZZpz1aHhH8gaESESY51cfuZiiORH_So",
authDomain: "pwaexemplo.firebaseapp.com",
databaseURL: "https://pwaexemplo.firebaseio.com",
projectId: "pwaexemplo",
storageBucket: "",
messagingSenderId: "516905651535"
};
firebase.initializeApp(config);
</script>
</script>
<script src="js/object.observer.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-4">
<h1>myNotes</h1>
</header>
<div id="content" class="container grey lighten-3">
<p>Adicione suas anotações a seguir:</p>
<form id="form-add-note" class="row">
<input type="text" placeholder="Anotações..." class="col-2 white">
<input type="submit" value="+" class="blue-grey white-text col-1">
</form>
<ul id="notes">
<li>Nota</li>
</ul>
</div>
</body>
</html>