File size: 361 Bytes
aceb54a
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<head>
    <title>PDF OCR</title>
    <link href="/static/style.css" rel="stylesheet">
</head>
<body>
    <h1>Upload PDF for OCR</h1>
    <form action="/uploadfile/" enctype="multipart/form-data" method="post">
        <input name="file" type="file" accept=".pdf">
        <button type="submit">Upload</button>
    </form>
</body>
</html>