17 lines
539 B
HTML
17 lines
539 B
HTML
<!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>
|