|
| 1 | +<!doctype html> |
| 2 | +<html> |
| 3 | +<head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>InApp Support</title> |
| 7 | + |
| 8 | + <!-- Disable tap highlight on IE --> |
| 9 | + <meta name="msapplication-tap-highlight" content="no"> |
| 10 | + |
| 11 | + <!-- Web Application Manifest --> |
| 12 | + <!-- <link rel="manifest" href="manifest.json"> --> |
| 13 | + |
| 14 | + <!-- Add to homescreen for Chrome on Android --> |
| 15 | + <meta name="mobile-web-app-capable" content="yes"> |
| 16 | + <meta name="application-name" content="inApp support"> |
| 17 | + <meta name="theme-color" content="#303F9F"> |
| 18 | + |
| 19 | + <!-- Add to homescreen for Safari on iOS --> |
| 20 | + <meta name="apple-mobile-web-app-capable" content="yes"> |
| 21 | + <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> |
| 22 | + <meta name="apple-mobile-web-app-title" content="inApp Support"> |
| 23 | + <meta name="apple-mobile-web-app-status-bar-style" content="#303F9F"> |
| 24 | + |
| 25 | + <!-- Tile icon for Win8 --> |
| 26 | + <meta name="msapplication-TileColor" content="#3372DF"> |
| 27 | + <meta name="msapplication-navbutton-color" content="#303F9F"> |
| 28 | + |
| 29 | + |
| 30 | + |
| 31 | + <!-- App Styling --> |
| 32 | + <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en"> |
| 33 | + <link rel="stylesheet" href="styles/main.css"> |
| 34 | +</head> |
| 35 | +<body> |
| 36 | + |
| 37 | + |
| 38 | + <!-- Firebase --> |
| 39 | + |
| 40 | + <script src="https://www.gstatic.com/firebasejs/3.6.1/firebase.js"></script> |
| 41 | + <script> |
| 42 | + // Initialize Firebase |
| 43 | + var config = { |
| 44 | + apiKey: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", |
| 45 | + authDomain: "XXXXX-XXXXX.firebaseapp.com", |
| 46 | + databaseURL: "https://XXXXX-XXXXX.firebaseio.com", |
| 47 | + storageBucket: "xxxxx-xxxxx.appspot.com", |
| 48 | + messagingSenderId: "XXXXXXXXXXXX" |
| 49 | + }; |
| 50 | + firebase.initializeApp(config); |
| 51 | + </script> |
| 52 | + |
| 53 | +</body> |
| 54 | +</html> |
0 commit comments