-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (26 loc) · 924 Bytes
/
index.html
File metadata and controls
31 lines (26 loc) · 924 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ted Talk Views Prediction</title>
</head>
<body>
<h1>Ted Talk Views Prediction</h1>
{% if result %}
<p>{{ result }}</p>
{% endif %}
<form method="post" action="/predict">
<label>Comments</label>
<input type="text" name="comments"><br><br>
<label>Duration</label>
<input type="text" name="duration"><br><br>
<label>Published Date</label>
<input type="text" name="p_date"><br><br>
<label> Recorded Date</label>
<input type="text" name="r_date"><br><br>
<label>Available Languages Count</label>
<input type="text" name="alc"><br><br>
<input type="submit" name="Predict">
</form>
</body>
</html>