-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.html
90 lines (79 loc) · 3.71 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="A mobile application for students at ACS UPB.">
<!-- iOS meta tags & icons -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-status-bar-style" content="black">
<meta content="ACS UPB Mobile" name="apple-mobile-web-app-title">
<title>ACS UPB Mobile</title>
<link rel="manifest" href="/manifest.json">
<!-- Favicon -->
<link href="/icons/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180">
<link href="/icons/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png">
<link href="/icons/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png">
<link color="#5bbad5" href="/icons/safari-pinned-tab.svg" rel="mask-icon">
<link href="/icons/favicon.ico" rel="shortcut icon">
<meta content="ACS UPB Mobile" name="application-name">
<meta content="#2b5797" name="msapplication-TileColor">
<meta content="/browserconfig.xml" name="msapplication-config">
<meta content="#ffffff" name="theme-color">
<!-- Verify ownership for Norton SafeWeb -->
<meta name="norton-safeweb-site-verification"
content="f5j4iu-3ci2969eehgx9av87gi4dr8x0os0f1lj-4qj5qg-prszzs2gei63gxtrti-e2subyfqakx2041dbahrhfu43uijdy-gbryzh6byx0jwff2eu8w9tj5l47ej-j"/>
</head>
<body>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.9.2/firebase-app.js"></script>
<!-- SDKs for Firebase products
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/7.9.2/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.2/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.2/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.2/firebase-storage.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
release: {
apiKey: "AIzaSyC6-BEfdxQHSOTdpOfqLUB8_j7CGu4DvV0",
authDomain: "acs-upb-mobile.firebaseapp.com",
databaseURL: "https://acs-upb-mobile.firebaseio.com",
projectId: "acs-upb-mobile",
storageBucket: "acs-upb-mobile.appspot.com",
messagingSenderId: "611150208061",
appId: "1:611150208061:web:b62a7862a75930f48a1e54",
measurementId: "G-S7BTKYBV5T"
},
debug: {
apiKey: "AIzaSyCcjPiIekx_HJ5b4xsanjrl-gmjWUIDee4",
authDomain: "acs-upb-mobile-dev.firebaseapp.com",
databaseURL: "https://acs-upb-mobile-dev.firebaseio.com",
projectId: "acs-upb-mobile-dev",
storageBucket: "acs-upb-mobile-dev.appspot.com",
messagingSenderId: "712935993826",
appId: "1:712935993826:web:9d4208b5a346aae7a849bb",
measurementId: "G-YB0Z77XG2L"
},
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig.release);
firebase.analytics();
// Enable authentication persistence per session
// https://github.com/student-hub/acs-upb-mobile/issues/207
firebase.auth().setPersistence(firebase.auth.Auth.Persistence.SESSION);
</script>
<!-- This script installs service_worker.js to provide PWA functionality to
application. For more information, see:
https://developers.google.com/web/fundamentals/primers/service-workers -->
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function () {
navigator.serviceWorker.register('/flutter_service_worker.js');
});
}
</script>
<script src="main.dart.js" type="application/javascript"></script>
</body>
</html>