maxboddy's picture
Update templates/index.html
a7d6330 verified
raw
history blame contribute delete
608 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>小寫字母辨識</title>
<style>
canvas { background: black; border: 1px solid white; }
body { text-align: center; background: #222; color: #eee; font-family: sans-serif; }
</style>
</head>
<body>
<h1>手寫字母辨識</h1>
<canvas id="canvas" width="280" height="280" style="touch-action: none;"></canvas>
<button onclick="clearCanvas()">清除</button>
<button onclick="submit()">辨識</button>
<h2 id="result"></h2>
<script src="/static/script.js"></script>
</body>
</html>