flask-demo / templates /index.html
heboya8's picture
Update templates/index.html
5909d53 verified
raw
history blame
472 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Object Detection App</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<h1>Real-Time Object Detection</h1>
<p>Upload an image to detect objects using DETR.</p>
<form method="POST" enctype="multipart/form-data" action="/upload">
<input type="file" name="file" accept="image/*">
<input type="submit" value="Detect Objects">
</form>
</body>
</html>