File size: 951 Bytes
806e949
 
 
 
7e5a3e2
d085dad
d64770b
806e949
 
d085dad
04725e4
 
 
d085dad
04725e4
d085dad
 
 
 
 
 
 
 
0148a7d
d085dad
 
 
 
 
bd823e4
d64770b
806e949
04725e4
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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>FaceFeel</title>
  <link rel="stylesheet" href="/static/style.css">
</head>
<body>
  <h1>FaceFeel: Your Face, Your Feelings!</h1>

  <!-- βœ… playsinline added for iOS -->
  <video autoplay playsinline id="videoElement"></video>
  <br />

  <!-- πŸ”„ Flip Camera button -->
  <button class="btn" onclick="toggleCamera()">πŸ”„ Flip Camera</button>
  <button class="btn" onclick="captureAndSend()">Capture & Predict</button>
  
  <div id="capturedImagePreview">
    <h3>Captured Image:</h3>
    <img id="snapshotImage" alt="Captured snapshot" />
  </div>

  <div id="emojiDisplay"></div>
  <div id="emotionText"></div>
  
  <!-- Download link -->
  <a id="downloadEmoji" download="emoji.png" style="display: none;">⬇️ Download Emoji</a>

  <script src="/static/scripts.js"></script>
</body>
</html>