-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (52 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<base href="/progressive-web-apps/">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>PWA</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: "AIzaSyBv-tG8YOmui3zAwYSKawmkLytps_V8N_A",
authDomain: "progressive-web-apps-207a8.firebaseapp.com",
databaseURL: "https://progressive-web-apps-207a8.firebaseio.com",
projectId: "progressive-web-apps-207a8",
storageBucket: "",
messagingSenderId: "659974483591"
};
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>
<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">
</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-4">
<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>