Sudipta Nayak
Issue-fix-5
17e13ce
raw
history blame
606 Bytes
<!-- templates/index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Object Detection App</title>
</head>
<body>
<h1>Welcome to Object Detection App</h1>
<form action="/detect/" method="post" enctype="multipart/form-data">
<label for="file">Upload an Image or Video :</label>
<input type="file" id="file" name="file" onchange="readURL(this)" accept=".jpg, .jpeg, .png, .mp4" required>
<button type="submit">Detect Objects</button>
</form>
</body>
</html>