<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> | |