LovnishVerma's picture
Upload 4 files
35bf195 verified
raw
history blame
735 Bytes
<html>
<head>
<title>Flask Iris</title>
</head>
<body>
<h1>Welcome to Predict Page</h1>
<form action="/predictiris" method="POST">
<input type="text" name="sepal_length" placeholder="Sepal Length" required><br><br>
<input type="text" name="sepal_width" placeholder="Sepal Width" required><br><br>
<input type="text" name="petal_length" placeholder="Petal Length" required><br><br>
<input type="text" name="petal_width" placeholder="Petal Width" required><br><br>
<input type="submit" value="Predict">
</form>
{% if prediction %}
<h3>Prediction: {{ prediction }}</h3>
{% endif %}
<h3><a href="/">Back to Home</a></h3> <br>
</body>
</html>