23 lines
484 B
HTML
23 lines
484 B
HTML
<html>
|
|
<head>
|
|
<title>Video Surveillance</title>
|
|
<style>
|
|
.divContainer {
|
|
width: 700px; /* Bigger than image's width. */
|
|
height: 500px; /* Bigger than image's height. */
|
|
border: solid;
|
|
}
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Video Surveillance</h1>
|
|
<div class="divContainer">
|
|
<img src="{{ url_for('video_feed') }}">
|
|
</div>
|
|
</body>
|
|
</html> |