-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (27 loc) · 970 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stock Prediction App</title>
</head>
<body>
<h1>Stock Prediction App</h1>
<form method="post" action="/">
<h2>enter the Ticker</h2>
<label for="ticker">Stock Ticker:</label>
<input type="text" name="ticker" required>
<label for="start_date">Start Date:</label>
<input type="text" name="start_date" placeholder="YYYY-MM-DD" required>
<label for="end_date">End Date:</label>
<input type="text" name="end_date" placeholder="YYYY-MM-DD" required>
<button type="submit">Predict</button>
</form>
{% if predicted_price %}
<p>Last Date: {{ last_date }}</p>
<p>Predicted Price: {{ predicted_price }}</p>
<p>Stock Ticker: {{ ticker }}</p>
<!--<p>Average Cross-validation score: {{ avg_cv_score }}</p>-->
{% endif %}
</body>
</html>