-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 2.05 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
<html>
<head>
<title>Stocks & Shares ISA Providers</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="Stocks Shares ISA Providers">
<meta name="keywords" content="stocks, equities, comparison, analysis, calculator, engineering">
<meta name="author" content="Abhishek Shenoy">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
</head>
<body>
<div id="main">
<nav id="menu" style="padding:10px;">
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text" style="font-size: 14px;">Num Monthly Fund Trades</span>
</div>
<input type="text" id="num-funds" class="form-control" type="number" value="0"/>
</div>
</div>
<div class="col-sm-4">
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text" style="font-size: 14px;">Num Monthly Stock Trades</span>
</div>
<input type="text" id="num-stocks" class="form-control" type="number" value="0"/>
</div>
</div>
<div class="col-sm-4">
<button id="simulate" class="btn btn-primary">
<span id="sim-available">Update</span>
<span id="sim-loading"class="spinner-grow spinner-grow-sm" role="status" aria-hidden="true" style="display: none;"></span>
</button>
</div>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div id="plot"></div>
</div>
</div>
</div>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<!-- <script src="https://cdn.jsdelivr.net/gh/nicolaspanel/numjs@0.15.1/dist/numjs.min.js"></script> -->
<script src="./assets/js/app.js"></script>
</body>
</html>