-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (49 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SBP</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF8">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Lato:400,700,100,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/css/materialize.min.css">
<script src="https://www.gstatic.com/firebasejs/live/3.0/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyB9mC4kUvvP-FFkBKyex54JxmSyF-PDbVw",
authDomain: "routemanagementsystem-9897e.firebaseapp.com",
databaseURL: "https://routemanagementsystem-9897e.firebaseio.com",
storageBucket: "gs://routemanagementsystem-9897e.appspot.com",
};
firebase.initializeApp(config);
</script>
<style>
.overlay-container-cordova {
position: fixed;
z-index: 9998;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: table;
transition: opacity .5s ease;
}
.splash-img {
height: 100vh;
width: 100vw;
}
</style>
</head>
<body>
<!-- <div class="overlay-container-cordova" id="cordova-overlay">
<img src="~images/splash.png" class="splash-img"/>
</div> -->
<div id="app" class="app"></div>
<!-- <script type="text/javascript" src="cordova.js"></script> -->
<script src="build.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/js/materialize.min.js"></script>
</body>
</html>