-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (29 loc) · 1.31 KB
/
index.html
File metadata and controls
39 lines (29 loc) · 1.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<title>Object Detection</title>
</head>
<body>
<form method = "POST" enctype="multipart/form-data">
<div class="app" style="margin: auto;width: 50%; padding-top: 12.5%;">
<h1>Object Detection for for Autonomous Vehicles</h1>
<h3>Team: Sneakyturtle</h3>
<div class="input-group mb-3">
<input type="file" class="form-control" id="inputGroupFile02">
<label class="input-group-text" for="inputGroupFile02">Upload</label>
</div>
<button type="submit" class="btn btn-success">Submit</button>
{% if output == "show" %}
<div class="img" style = "padding-bottom:5%;">
<h6>Output</h6>
<img src="{{url_for('static', filename = 'output.png')}}" width="500" height="500" />
</div>
{% endif %}
</div>
</form>
</body>
</html>