VnOCR / templates /home.html
firetac's picture
Upload 13 files
a0004ee verified
raw
history blame
584 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<div class="container">
<h1>Welcome to VN OCR</h1>
<div class="button-container">
<button type="button" onclick="window.location.href='/index'">Go to Webcam Capture</button>
<button type="button" onclick="window.location.href='/other'">Go to Image OCR</button>
</div>
</div>
</body>
</html>