First Commit
This commit is contained in:
commit
c51424e069
9 files changed
+208
No files matched your search
@@ -0,0 +1,23 @@
|
||||
<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>
|
||||
Reference in new issue
Block a user