-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
38 lines (37 loc) · 1.3 KB
/
index.php
File metadata and controls
38 lines (37 loc) · 1.3 KB
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
<!DOCTYPE html>
<head>
<title>Simple Stock Exchange</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="style.css">
<script src="benzinga.js"></script>
</head>
<body onload="loadData('start',null,'right')">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<header>
<div class="navbar-header">
<div class="navbar-title"><h1>Simple Stock Exchange</h1></div>
<div class="navbar-collapse collapse navbar-form">
<div class="navbar-form navbar-right">
<input type="textfield" id="symbol" placeholder="Enter Symbol"></input>
<button type="submit" class="btn btn-success" onclick="loadData('search',document.getElementById('symbol').value,'left')">Lookup</button>
</div>
</div>
</div>
</header>
</div>
</div>
<div class="jumbotron">
<div class="container-header">
</div>
<div class="container">
<div id="container-left">
</div>
<div id="container-right">
</div>
</div>
</div>
<div id="container-view_stock"></div>
</body>
</html>