File size: 584 Bytes
a3bccb5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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>