|
|
|
<!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> |
|
<style> |
|
body { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
justify-content: flex-start; |
|
height: 100vh; |
|
margin: 0; |
|
} |
|
|
|
h1 { |
|
margin-bottom: 20px; |
|
} |
|
|
|
#loading { |
|
display: none; |
|
} |
|
|
|
#output { |
|
max-width: 100%; |
|
height: auto; |
|
display: none; |
|
} |
|
</style> |
|
<script type="text/javascript"> |
|
document.getElementById("loading").style.display = "none"; |
|
|
|
function showLoading() { |
|
document.getElementById("loading").style.display = "block"; |
|
} |
|
</script> |
|
</head> |
|
<body> |
|
<h1>Object Detection App</h1> |
|
<form action="/detect/" method="post" enctype="multipart/form-data" onsubmit="showLoading();"> |
|
<label for="file">Upload an Image or Video :</label> |
|
<input type="file" id="file" name="file" accept=".jpg, .jpeg, .png, .mp4, .mov" required> |
|
<button type="submit">Detect</button> |
|
</form> |
|
<div id="loading">Loading...</div> |
|
</body> |
|
</html> |
|
|