Spaces:
Runtime error
Runtime error
File size: 867 Bytes
a597c05 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Camera Instagram Uploader</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<span id="camera-icon">📷</span>
<video id="video" autoplay style="display: none;"></video>
<canvas id="canvas"></canvas>
<div id="button-container">
<button id="capture-btn" style="display: none;">Capture</button>
<button id="switch-btn" style="display: none;">Switch Camera</button>
<button id="retake-btn" style="display: none;">Retake</button>
<button id="upload-btn" style="display: none;">Upload to Instagram</button>
</div>
<div id="status">Click the camera icon to start.</div>
<script src="/static/js/script.js"></script>
</body>
</html> |