-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.html
More file actions
55 lines (46 loc) · 2.09 KB
/
Copy pathaction.html
File metadata and controls
55 lines (46 loc) · 2.09 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Learn how to use the Firebase platform on the Web">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ZeoFlow</title>
<!-- Disable tap highlight on IE -->
<meta name="msapplication-tap-highlight" content="no">
<!-- Web Application Manifest -->
<link rel="manifest" href="manifest.json">
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="ZeoFlow">
<meta name="theme-color" content="#000000">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="ZeoFlow">
<meta name="apple-mobile-web-app-status-bar-style" content="#000000">
<link rel="stylesheet" href="styles/auth.css" type="text/css">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/rollups/aes.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.11.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.11.0/firebase-firestore.js"></script>
<!-- Add Firebase products that you want to use -->
<script src="https://www.gstatic.com/firebasejs/5.11.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.11.1/firebase-database.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyDc9l65AV4Vx-WZZ_yUqrRiGTMMq0Mvvd4",
authDomain: "zeo-flow.firebaseapp.com",
databaseURL: "https://zeo-flow.firebaseio.com",
projectId: "zeo-flow",
storageBucket: "zeo-flow.appspot.com",
messagingSenderId: "1064378687161"
};
firebase.initializeApp(config);
</script>
<script src="js/auth.js" type="text/javascript"></script>
</head>
<body onresize="onResize()">
</body>
</html>