-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 868 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (26 loc) · 868 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>House Price Predictor</h1>
<form action="/predict"method="post">
<label for="size_sqft">House Size (sq. ft.):</label>
<input type="number"id="size_sqft" name="size_sqft">
<br></br>
<label for="bedrooms">Number of bedrooms:</label>
<input type="number"id="bedrooms" name="bedrooms">
<br></br>
<label for="age_years">House Age(years):</label>
<input type="number"id="age_years" name="age_years">
<br></br>
<button type="submit">Predict Price</button>
</form>
{% if prediction %}
<h2>Predicted Price: ${{prediction}}</h2>
{% endif %}
</body>
</html>