-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.html
99 lines (98 loc) · 5.22 KB
/
dashboard.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
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<title>MockStock</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-32x32.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/dashboard.css">
<link rel="stylesheet" href="css/jquery.alerts.css">
<script src="js/config.js"></script>
<script src="js/jquery.ui.draggable.js"></script>
<script src="js/jquery.alerts.js"></script>
<script src="js/dashboard.js"></script>
<script src="js/buysell.js"></script>
<script src="js/Chart.js"></script>
<script src="js/jquery.marquee.min.js"></script>
<script src="js/news.js"></script>
<script src="js/notify.min.js"></script>
</head>
<body style="background: #484848;">
<nav class="navbar navbar-inverse" style="background: #000000; border:none;margin-bottom: 5px;">
<div class="container-fluid">
<div class="navbar-header" >
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<img id="logo" src="images/logo.png" style="width:45px;height:45px;margin-right: 5px;margin-top: 2px;">
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li class="nav_selected"><a href="dashboard.html" style="color: #fff;font-size: 18px">Dashboard</a></li>
<li><a href="portfolio.html" style="font-size: 18px;color: #fff">Portfolio & Transactions</a></li>
<li><a href="broker.html" style="font-size: 18px;color: #fff">Broker</a></li>
<li><a href="howtoplay.html" style="font-size: 18px;color: #fff">How To Play</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li style="font-size:20px;color: #FFF;margin-top: 13px;margin-left: 20px;"><i class="fa fa-inr"
style="font-size: 20px;"></i><span
id="amount" style="margin-left: 10px"></span></li>
<li><a style="font-size: 18px;color: #FFF"><span class="glyphicon glyphicon-user"
style="margin-left: 2px;"><span id="name"
style="margin-left: 10px"></span></span></a>
</li>
<li><a id="logout" style="font-size: 18px;color: #FFF"><span
class="glyphicon glyphicon-log-out"></span>
Logout</a></li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid" style="padding-bottom: 0px;margin-bottom: 0px;">
<div class="row">
<div class="col-sm-8" style="padding: 10px;">
<div class="table-responsive" style="box-shadow: 0px 8px 16px 4px rgba(0,0,0,0.2);border-radius: 5px;">
<table id="myTable" class=" col-sm-8 table text-center " style="padding: 0px;background: #FFF;margin: 0px;" data-min="5" data-max="50">
<thead class="text-center">
<tr style="background: #212121;color: #FFF;">
<th style="text-align: center;">Company</th>
<th style="text-align: center;"></th>
<th style="text-align: center;">Market Price</th>
<th style="text-align: center;">Trade</th>
<th style="text-align: center;">Volume</th>
<th style="text-align: center;">High</th>
<th style="text-align: center;">Low</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<div class="col-sm-4" style="padding: 16px;">
<p class="news_title">Market News</p>
<pre style="font-size: 15px" class="scroll-left" id="mn">
</pre>
<p class="news_title" style="margin-top: 10px;">Broker's Tip</p>
<pre style="font-size: 15px" class="scroll-left" id="bn">
</pre>
<p class="news_title" style="margin-top: 15px;font-size: 20px;">More Details</p>
<div id="graph-container" class="company_graph text-center" style="margin: 0px;">
<span id="sector">Sector:IT</span><br>
<span id="shares">You have 100 shares</span>
<canvas id="display-graph" width="100%" style="padding: 1px;height: 80%">
</canvas>
</div>
</div>
</div>
</div>
<script src="js/information.js"></script>
</body>
</html>