File size: 1,588 Bytes
50f34a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0c1e369
 
 
 
50f34a6
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Flask Camera App</title>
    <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
    <div class="container">
        <h1>Camera Capture App</h1>
        <button id="openCamera" class="btn">
            <img src="https://img.icons8.com/ios-filled/50/ffffff/camera.png" alt="Camera Icon">
            Open Camera
        </button>
        <div id="cameraContainer" style="display: none;">
            <select id="cameraSelect">
                <option value="user">Front Camera</option>
                <option value="environment">Back Camera</option>
            </select>
            <video id="videoElement" autoplay playsinline></video>
            <button id="captureButton" class="btn">Capture Image</button>
        </div>
        <canvas id="canvas" style="display: none;"></canvas>
        <div id="result">
            <img id="capturedImage" style="display: none; max-width: 100%;">
            <div id="actionButtons" style="display: none; margin-top: 10px;">
                <button id="retakeButton" class="btn">Retake</button>
                <button id="uploadButton" class="btn">Upload to Instagram</button>
            </div>
            <pre id="hfResult"></pre>
        </div>
    </div>
    <script src="{{ url_for('static', filename='js/script.js') }}"></script>
</body>
</html>