Spaces:
Sleeping
Sleeping
Create result.html
Browse files- templates/result.html +43 -0
templates/result.html
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<title>Prediction Result</title>
|
| 5 |
+
<style>
|
| 6 |
+
body {
|
| 7 |
+
background: #eaffea;
|
| 8 |
+
font-family: Arial;
|
| 9 |
+
padding: 30px;
|
| 10 |
+
}
|
| 11 |
+
.box {
|
| 12 |
+
background: white;
|
| 13 |
+
padding: 25px;
|
| 14 |
+
max-width: 500px;
|
| 15 |
+
margin: auto;
|
| 16 |
+
border-radius: 10px;
|
| 17 |
+
box-shadow: 0 0 10px #ccc;
|
| 18 |
+
text-align: center;
|
| 19 |
+
}
|
| 20 |
+
a {
|
| 21 |
+
display: inline-block;
|
| 22 |
+
margin-top: 20px;
|
| 23 |
+
padding: 10px;
|
| 24 |
+
background: green;
|
| 25 |
+
color: white;
|
| 26 |
+
text-decoration: none;
|
| 27 |
+
}
|
| 28 |
+
a:hover {
|
| 29 |
+
background: darkgreen;
|
| 30 |
+
}
|
| 31 |
+
</style>
|
| 32 |
+
</head>
|
| 33 |
+
<body>
|
| 34 |
+
|
| 35 |
+
<div class="box">
|
| 36 |
+
<h2>Recommended Crop 🌱</h2>
|
| 37 |
+
<h1>{{ crop }}</h1>
|
| 38 |
+
|
| 39 |
+
<a href="/">Predict Again</a>
|
| 40 |
+
</div>
|
| 41 |
+
|
| 42 |
+
</body>
|
| 43 |
+
</html>
|