-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (76 loc) · 3.7 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
<!DOCTYPE html>
<html ng-app="selfHelpApp" ><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CryrptBoard - Bitcoin at Glance</title>
<link rel="manifest" href="./manifest.json">
<script src="js/angular1.4.js"></script>
<script src="js/angular-route.js"></script>
<script src="js/ngAria.js"></script>
<!-- <script type="text/javascript" src="https://cdn.jsdelivr.net/ngstorage/0.3.6/ngStorage.min.js"></script> -->
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-google-chart/0.1.0/ng-google-chart.min.js" type="text/javascript"></script>
<script src="js/jquery-1.11.1.js"></script>
<!-- <script src="js/moment.min.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" async=""></script>
<script src="js/app.js?1501"></script>
<script src="js/controller.js?1501"></script>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> -->
<!--Let browser know website is optimized for mobile-->
<link rel="stylesheet" href="css/dashboard.css?1501">
<script>
var OneSignal = window.OneSignal || [];
OneSignal.push(function() {
OneSignal.init({
appId: "7334a009-9ce6-491b-9e3b-223d839d6c65",
});
});
</script>
</head>
<body>
<div class="header" ng-controller="globalCtrl">
<div class="notificationpanel">
<span>Global Price: {{globalPrice.INR.last | currencyFilter}}{{globalPrice.INR.symbol}} ({{globalPrice.USD.last | currencyFilter}}{{globalPrice.USD.symbol}})</span>
<span>ZebPay [Buy: {{priceData.zebpay.buy | currencyFilter}} Sell: {{priceData.zebpay.sell}}]</span>
<span>Koinex [BTC: {{priceData.koinex.btc | currencyFilter}}
ETH: {{priceData.koinex.eth | currencyFilter}}{{globalPrice.INR.symbol}}
XRP: {{priceData.koinex.xrp | currencyFilter}}{{globalPrice.INR.symbol}}
LTC: {{priceData.koinex.ltc | currencyFilter}}{{globalPrice.INR.symbol}}
BCH: {{priceData.koinex.bch | currencyFilter}}{{globalPrice.INR.symbol}}
]</span>
</div>
<div class="appTitle"> <h4>CryptBoard | Bitcoin Dashboard</h4></div>
</div>
<nav class="navwrap">
<div class="nav-wrapper indigo darkindigen-4">
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a class="" href="#smartDashboard">Dashboard</a></li>
<li><a class="" href="#myBalance">My Investments</a></li>
<li><a class="" href="#notifications">Notifications</a></li>
</ul>
<ul id="slide-out" class="side-nav">
<li><a class="" href="#smartDashboard">Dashboard</a></li>
<li><a class="" href="#myBalance">My Investments</a></li>
<li><a class="" href="#notifications">Notifications</a></li>
</ul>
<a href="#" data-activates="slide-out" class="button-collapse"><i class="material-icons">menu</i></a>
</div>
</nav>
<div class="mainConatiner">
<div class="row flex">
<div class="myContainer z-depth-1 searchBox myCard">
<div ng-view></div>
</div>
</div>
<div class="footer">
<p><span class="teal-text">From India with love. | Disclaimer: There might be a delay up to a minute with the actual prices. </span> </p>
</div>
</div>
</body>
</html>