got_ocr_test / templates /index.html
acharyaaditya26's picture
changes
da60b63
raw
history blame
361 Bytes
<!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>