Update templetes/index.html
Browse files- templetes/index.html +5 -3
templetes/index.html
CHANGED
|
@@ -25,11 +25,11 @@
|
|
| 25 |
<div class="result">The Flower Name is: {{ data }}</div>
|
| 26 |
|
| 27 |
{% if data == "setosa" %}
|
| 28 |
-
<img src="https://cdn-uploads.huggingface.co/production/uploads/
|
| 29 |
{% elif data == "versicolor" %}
|
| 30 |
-
<img src="https://cdn-uploads.huggingface.co/production/uploads/
|
| 31 |
{% elif data == "virginica" %}
|
| 32 |
-
<img src="https://cdn-uploads.huggingface.co/production/uploads/
|
| 33 |
{% else %}
|
| 34 |
<p>Not Found</p>
|
| 35 |
|
|
@@ -38,6 +38,8 @@
|
|
| 38 |
|
| 39 |
|
| 40 |
|
|
|
|
|
|
|
| 41 |
|
| 42 |
</body>
|
| 43 |
</html>
|
|
|
|
| 25 |
<div class="result">The Flower Name is: {{ data }}</div>
|
| 26 |
|
| 27 |
{% if data == "setosa" %}
|
| 28 |
+
<img src="" alt="Iris Setosa">
|
| 29 |
{% elif data == "versicolor" %}
|
| 30 |
+
<img src="" alt="Iris Versicolor">
|
| 31 |
{% elif data == "virginica" %}
|
| 32 |
+
<img src="" alt="Iris Virginica">
|
| 33 |
{% else %}
|
| 34 |
<p>Not Found</p>
|
| 35 |
|
|
|
|
| 38 |
|
| 39 |
|
| 40 |
|
| 41 |
+
|
| 42 |
+
|
| 43 |
|
| 44 |
</body>
|
| 45 |
</html>
|