-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
58 lines (51 loc) · 1.95 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ДоброТракер</title>
<!--EmailJS-->
<script type="text/javascript" src="https://cdn.emailjs.com/dist/email.min.js"></script>
<script type="text/javascript">
(function(){
emailjs.init("user_Y34Pv6PfKC6vH2gxlOoQb");
})();
</script>
<!-- Firebase -->
<script src="https://www.gstatic.com/firebasejs/3.5.0/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyBMQKZlYbJh9d0a9Bd6IyLNr3nLOfmMNzo",
authDomain: "dobrotracker.firebaseapp.com",
databaseURL: "https://dobrotracker.firebaseio.com",
storageBucket: "dobrotracker.appspot.com",
messagingSenderId: "242190719916"
};
firebase.initializeApp(config);
</script>
<!-- Firebase UI -->
<script src="https://www.gstatic.com/firebasejs/ui/live/0.5/firebase-ui-auth.js"></script>
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/live/0.5/firebase-ui-auth.css" />
<!-- React -->
<script src="https://fb.me/react-15.3.0.min.js"></script>
<script src="https://fb.me/react-dom-15.3.0.min.js"></script>
<!-- ReactFire -->
<script src="https://cdn.firebase.com/libs/reactfire/1.0.0/reactfire.min.js"></script>
<!-- Babel -->
<script src="https://unpkg.com/[email protected]/babel.min.js"></script>
<!-- Currency -->
<script src="https://cdn.shopify.com/s/javascripts/currencies.js"></script>
<!-- Fonts -->
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Poiret+One' rel='stylesheet' type='text/css'>
<!-- JS -->
<script type="text/babel" src="js/modal.js"></script>
<script type="text/babel" src="js/app.js"></script>
<!-- CSS -->
<link rel="stylesheet" href="css/modal.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body style="margin:0">
<div id="app"></div>
</body>
</html>