Files
simple-security-camera-page/templates/index.html
T
2022-02-17 19:58:47 -08:00

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>