-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponse.html
76 lines (75 loc) · 1.89 KB
/
response.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>
<head>
<link
rel="stylesheet"
href="{{ url_for('static', filename='css/styles.css') }}"
/>
</head>
<body id="home">
<nav class="navbar">
<!-- LOGO -->
<div class="logo">
<img
src="{{ url_for('static', filename='img/bulba_logo.png') }}"
style="width: 100px"
/>
</div>
<!-- NAVIGATION MENU -->
<ul class="nav-links">
<!-- NAVIGATION MENUS -->
<div class="menu">
<li><a href="/">Home</a></li>
<li><a href="/upload">Upload</a></li>
<li><a href="/response">Response</a></li>
<li><a href="/response">Contact</a></li>
</div>
</ul>
</nav>
<!--https://www.geeksforgeeks.org/how-to-upload-files-using-html-to-website/#-->
<div class="upload" style="width: 20%; height: 50%"></div>
<br />
<br />
<br />
<div style="background-color: #bee8d3; width: 30%; float: left">
<p style="font-size: 20px">
Here is an example of descriptive sentences that AI model will generate
to help diagnose plant health
</p>
<br />
<br />
</div>
<div
style="
background-color: #bee8d3;
width: 50%;
float: right;
margin: 0 25px;
"
>
<p style="font-size: 25px">{{ my_variable }}</p>
<img
src="{{ url_for('static', filename=image_path) }}"
alt="Uploaded Image"
/>
</div>
<div
style="
position: absolute;
width: 100%;
height: 100px;
background-color: black;
bottom: 0px;
"
></div>
<div
style="
position: absolute;
width: 100%;
height: 100px;
background-color: rgb(222, 248, 246);
bottom: 0px;
"
></div>
</body>
</html>