adding to gitea repo

This commit is contained in:
Lucca Pirovano
2026-06-11 15:29:12 -04:00
parent d09a8e3364
commit 9caaa51cf5
3 changed files with 135 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>Server Webcam Stream</title>
<style>
body { font-family: Arial, sans-serif; text-align: center; background: #222; color: white; margin: 0; padding: 20px; }
img { max-width: 90%; border: 5px solid #444; border-radius: 10px; margin-top: 20px; }
h1 { margin-bottom: 10px; }
</style>
</head>
<body>
<h1>Live Feed from Server Webcam</h1>
<img src="{{ url_for('video_feed') }}" alt="Server webcam">
<p>Refresh the page if the stream stops.</p>
</body>
</html>