Create index.html
Browse files- index.html +39 -0
index.html
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
|
3 |
+
<html>
|
4 |
+
|
5 |
+
<head>
|
6 |
+
|
7 |
+
<title>Iris Flower Prediction</title>
|
8 |
+
|
9 |
+
</head>
|
10 |
+
|
11 |
+
<body>
|
12 |
+
|
13 |
+
<h1>Predict Iris Flower Species</h1>
|
14 |
+
|
15 |
+
<form action="/predict" method="post">
|
16 |
+
|
17 |
+
<label for="sepal_length">Sepal Length:</label>
|
18 |
+
|
19 |
+
<input type="number" step="any" id="sepal_length" name="sepal_length" required><br>
|
20 |
+
|
21 |
+
<label for="sepal_width">Sepal Width:</label>
|
22 |
+
|
23 |
+
<input type="number" step="any" id="sepal_width" name="sepal_width" required><br>
|
24 |
+
|
25 |
+
<label for="petal_length">Petal Length:</label>
|
26 |
+
|
27 |
+
<input type="number" step="any" id="petal_length" name="petal_length" required><br>
|
28 |
+
|
29 |
+
<label for="petal_width">Petal Width:</label>
|
30 |
+
|
31 |
+
<input type="number" step="any" id="petal_width" name="petal_width" required><br>
|
32 |
+
|
33 |
+
<button type="submit">Predict</button>
|
34 |
+
|
35 |
+
</form>
|
36 |
+
|
37 |
+
</body>
|
38 |
+
|
39 |
+
</html>
|