File size: 2,364 Bytes
40acfaa
ed9857d
40acfaa
ed9857d
 
40acfaa
ed9857d
 
 
 
 
40acfaa
ed9857d
 
ef5a3ac
ed9857d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ef5a3ac
 
 
 
 
 
 
 
 
 
ed9857d
 
40acfaa
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<html>
  <title>Iris Flower Prediction</title>
  <head>
    <style>
  body{
    
    background-color:floralwhite
  }
  
 
 
  </style>
  </head>
<body>

<form action="/irisf" method="POST">
  <table class="table table-striped trans" align="center">
    
    <div class="row">
    <tr align="center">
       <div class="col-sm-6">
         <td><label for="swidth" class="form-label">Sepal Width</label></td></div>
        <div class="col-sm-6">
          <td><input type="text" name="swidth" placeholder="Enter width of Sepal" required></td></div>
    </tr>
    <tr align="center">
        <div class="col-sm-6">
          <td><label for="sheight" class="form-label">Sepal Height</label></td></div>
        <div class="col-sm-6">
          <td><input type="text" name="sheight" placeholder="Enter height of Sepal" required></td></div>
    </tr>
    <tr align="center">
        <div class="col-sm-6">
          <td><label for="pwidth" class="form-label">Petal Width</label></td></div>
        <div class="col-sm-6">
          <td><input type="text" name="pwidth" placeholder="Enter width of Petal" required></td></div>
    </tr>
    <tr align="center">
        <div class="col-sm-6">
          <td><label for="pheight" class="form-label">Petal Height</label></td></div>
        <div class="col-sm-6">
          <td><input type="text" name="pheight" placeholder="Enter height of Petal" required></td></div>
    </tr>
    
    <tr>
    <td colspan="2" align="center">
      <input type="submit" value="Predict Flower Type">
      <input type="reset" value="Clear">
    </td>
    </tr>
    </div>
  </table>
  
</form>
     <div> The Flower Name is: </div>
     <div align="center"> {{data}} </div>
     <center>
     {% if data=="Iris-setosa" %}
        <img src="https://cdn.glitch.global/8599b2d2-58ab-4d42-98f5-97fa4c6bad04/Iris%20Setosa.png?v=1680866840563" alt="IRIS SETOSA" width="200" height="200">
     {% elif data=="Iris-versicolor" %}
        <img src="https://cdn.glitch.global/8599b2d2-58ab-4d42-98f5-97fa4c6bad04/Iris%20versicolor.png?v=1680866854461" alt="IRIS VERSICOLOR" width="200" height="200">
     {% elif data=="Iris-virginica" %}
        <img src="https://cdn.glitch.global/8599b2d2-58ab-4d42-98f5-97fa4c6bad04/Iris%20Virginica.png?v=1680866857022" alt="IRIS VIRGINICA" width="200" height="200">
     {% endif %}
     </center>

</body>
</html>