30 lines
919 B
HTML
30 lines
919 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Pi Camera Stream</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Raspberry Pi Camera</h1>
|
|
<p class="subtitle">HQ Camera M12 — Live Stream</p>
|
|
</header>
|
|
|
|
<div class="stream-container">
|
|
<img id="stream" src="/video_feed" alt="Camera stream">
|
|
<div class="flash-overlay" id="flash"></div>
|
|
</div>
|
|
|
|
<footer class="flex">
|
|
<div class="gallery" id="gallery">
|
|
<p class="gallery-empty">Aucune photo pour l'instant</p>
|
|
</div>
|
|
<img class="qrcode" src="{{ url_for('static', filename='qrcode.png') }}" alt="QR Code">
|
|
</footer>
|
|
|
|
<script src="{{ url_for('static', filename='script.js') }}"></script>
|
|
</body>
|
|
</html>
|