-
Notifications
You must be signed in to change notification settings - Fork 0
/
disease_plant.html
165 lines (124 loc) · 5.23 KB
/
disease_plant.html
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.1/css/bootstrap.min.css"
integrity="sha384-VCmXjywReHh4PwowAiWNagnWcLhlEJLA5buUprzK8rxFgeH0kww/aWY76TfkUoSX" crossorigin="anonymous">
<title>COTTON PLANT DISEASE PREDICTION</title>
<style>
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
.card-style {
background-color: #dcdcdc;
}
.content {
padding: 15px;
color: white;
background-color: rgb(153, 156, 150);
/* font-size: 1rem; */
}
@media (max-width: 430px) and (min-width: 200px) {
.contents {
font-size: 0.6rem;
color: chartreuse;
}
.content-h1 {
font-size: 1rem;
}
}
.border img {
border-radius: 15px;
border: 2px solid black;
}
</style>
</head>
<body>
<div>
<img src="/static/images/cotton palnt banner.png" class="w3-border w3-padding" alt="Junaid AI Production"
style="width:100%">
</div>
<div class="container my-2">
<div class="row mb-5">
<div class="col-sm" style="margin-bottom: 23px;">
<span class="border border-primary">
<img src="{{ user_image }}" alt="User Image" class="img-thumbnail">
<!-- <img src="{{pred_output}}" alt="User Image" class="img-thumbnail"> -->
</span>
</div>
<div class="col-sm">
<div>
<h1 style="padding: 15px; background-color: rgb(153, 156, 150); color: white;"
class="text-center mb-5 content-h1 rounded">
{{pred_output}} </h1>
</div>
<h2>Disease Name : </span></h2>
<h3 style="line-height: 100%;">Attack of Leaf Sucking and Chewing Pests <br></h3>
<hr class="w-100 mx-auto ">
</div>
</div>
<h1> Solution for Disease </h1>
<p><strong>Use any one Systemic Insecticide, which contain<i> Flonicamid 50%/ Thiamethoxam 25% WG / Imidacloprid
17.8 Sl / Acetamiprid 20% SP.</i></strong></p>
<p></p>
</div>
<section>
<div class="container">
<h1 style="padding: 15px; background-color: rgb(153, 156, 150); color: white;"
class="text-center my-3 content-h1">
Recommended Products</h1>
</div>
<div class="container">
<div class="card-columns">
<div class="card ">
<div class="card-body text-center card-style">
<img style="border-radius: 10px;" class="img-fluid" src="/static/images/preet.png" alt="">
<h3 class="card-text">Dose: 60-80 gm/Acre</h3>
</div>
</div>
<div class="card">
<div class="card-body text-center card-style">
<img style="border-radius: 10px;" class="img-fluid" src="/static/images/ulala.png" alt="">
<h3 class="card-text">Dose: 25-40 gm/Acre</h3>
</div>
</div>
<div class="card ">
<div class="card-body text-center card-style">
<img style="border-radius: 10px" class="img-fluid" src="/static/images/victor.png" alt="">
<h3 class="card-text">Dose: 60-80 gm/Acre</h3>
</div>
</div>
<div class="card ">
<div class="card-body text-center card-style">
<img style="border-radius: 10px;" class="img-fluid" src="/static/images/confidor.png" alt="">
<h3 class="card-text">Dose: 25-35 ml/Acre</h3>
</div>
</div>
<div class="card ">
<div class="card-body text-center card-style">
<img style="border-radius: 10px;" class="img-fluid" src="/static/images/panama.png" alt="">
<h3 class="card-text">Dose: 60-80 gm/Acre</h3>
</div>
</div>
<div class="card ">
<div class="card-body text-center card-style">
<img style="border-radius: 10px;" class="img-fluid" src="/static/images/actara.png" alt="">
<h3 class="card-text">Dose: 60-80 gm/Acre</h3>
</div>
</div>
</div>
<!-- <div class="container-fluid contents"> -->
<h5 style="padding: 15px; background-color: rgb(153, 156, 150); color: white;"
class="text-center my-3 contents">
Delivery Contact:
junaida.rahat@gmail.com</h5>
<!-- </div> -->
</div>
</section>
</body>
</html>