-
Notifications
You must be signed in to change notification settings - Fork 0
/
healthy_plant_leaf.html
76 lines (51 loc) · 1.92 KB
/
healthy_plant_leaf.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 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;
}
.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">
</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>
<div class="details">
<h6>
<b>There is no disease on the cotton plant.</b></br>
Although the chemical fertilizer has fallen on the leaves of the tree, the leaves are burnt, but
there is no need to worry.</br></br>
</h6>
</div>
</div>
</div>
</div>
</body>
</html>