digits-signlang / templates /index.html
Emeritus-21's picture
Update templates/index.html
4309bf7 verified
raw
history blame contribute delete
597 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Itsekiri Sign Recognition</title>
<style>
body { text-align: center; font-family: Arial; background: #fafafa; }
canvas { border: 2px solid #333; margin-top: 10px; }
</style>
</head>
<body>
<h1>Itsekiri Sign Recognition</h1>
<video id="video" autoplay playsinline style="display:none;"></video>
<canvas id="canvas" width="640" height="480"></canvas>
<div>
<h2>Prediction: <span id="prediction">--</span></h2>
<h3>Confidence: <span id="confidence">--</span>%</h3>
</div>
<script src="/static/app.js"></script>
</body>
</html>