Spaces:
Runtime error
Runtime error
File size: 901 Bytes
16036bc 79cf85f 16036bc 79cf85f 960b05a 79cf85f 16036bc | 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 | <!DOCTYPE html>
<html>
<head>
<title>BTC Price and Investment Plot</title>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
</head>
<body>
<h1>BTC Price and Investment Plot</h1>
<div class="container">
<div class="row">
<div class="col-md-6">
<h3>Interactive Plot</h3>
<div id="plotly-plot">
{{ plot_url | safe }}
</div>
</div>
</div>
</div>
<form method="POST">
Starting Value: <input type="number" name="starting_value" step="0.01" value="{{ starting_value }}">
<input type="submit" value="Update">
</form>
<div class="container">
<div class="row">
<div class="col-md-6">
<h3>Table</h3>
{% include 'table.html' %}
</div>
</div>
</div>
</body>
</html>
|