File size: 695 Bytes
0f73e99
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Real-Time Document Scanner</title>
</head>

<body style="font-family:sans-serif;text-align:center">
    <h1>📄 Real-Time Document Scanner</h1>

    {% with messages = get_flashed_messages(with_categories=true) %}
    {% for category, message in messages %}
    {% if category == 'error' %}
    <p style="color: red;">{{ message }}</p>
    {% else %}
    <p style="color: green;">{{ message }}</p>
    {% endif %}
    {% endfor %}
    {% endwith %}

    <form action="/scan">
        <button style="padding:15px 30px;font-size:18px">📷 Scan Document</button>
    </form>
</body>

</html>