-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcrop.html
60 lines (57 loc) · 2.1 KB
/
crop.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
<html>
<head>
<title>Crop Yield Prediction System</title>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- Custom Theme files -->
<link href= "{{ url_for('static', filename= 'style.css') }}" rel="stylesheet" type="text/css" media="all" />
<!-- //Custom Theme files -->
<!-- web font -->
<link href="//fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i" rel="stylesheet">
<!-- //web font -->
</head>
<body>
<!-- main -->
<div class="main-w3layouts wrapper">
<h1>CROP YIELD PREDICTION BASED ON INDIAN AGRICULTURE</h1>
<div class="main-agileinfo">
<div class="agileits-top">
<form action="." method="post" autocomplete="off" name="one">
<input class="text" type="text" name="state_name" placeholder="State Name" required="" >
<input class="text" type="text" name="district_name" placeholder="District Name" required="">
<input class="text" type="text" name="crop" placeholder="Crop" required="">
<input class="text" type="text" name="area" placeholder="Area" required="">
<input class="text" type="text" name="year" placeholder="Year" required="">
<input class="text" type="text" name="season" placeholder="Season" required="">
<div class="wthree-text">
<label class="anim">
</label>
<div class="clear"> </div>
</div>
<input type="submit" value="Predict">
</form>
<p>Production would be <a href="#"> {{ pr }} KGs</a></p>
<p>Yield would be <a href="#"> {{ yl }} KGs/acre</a></p>
</div>
</div>
<!-- copyright -->
<div class="colorlibcopy-agile">
<p>© 2020 Farm Yield Prediction System. All rights reserved | Design by <a href="https://www.linkedin.com/in/potnuru-sai-nishant-612b4652/" target="_blank">Sai Nishant</a></p>
</div>
<!-- //copyright -->
<ul class="colorlib-bubbles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<!-- //main -->
</body>
</html>