File size: 2,491 Bytes
68594d1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!-- app/templates/index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>PDF Language Issue Analyzer</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 40px;
        }
        .container {
            max-width: 800px;
            margin: auto;
        }
        .upload-section {
            border: 2px dashed #ccc;
            padding: 20px;
            text-align: center;
        }
        .upload-section:hover {
            border-color: #333;
        }
        .results {
            margin-top: 20px;
        }
        .issues {
            margin-top: 10px;
        }
        .pdf-viewer {
            margin-top: 20px;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>PDF Language Issue Analyzer</h1>
        <div class="upload-section">
            <form id="upload-form" enctype="multipart/form-data" method="post" action="/analyze">
                <input type="file" name="file" accept="application/pdf" required>
                <br><br>
                <button type="submit">Analyze PDF</button>
            </form>
        </div>

        {% if language_issues %}
        <div class="results">
            <h2>Language Issues Found: {{ language_issues.total_issues }}</h2>
            <div class="issues">
                <ul>
                    {% for issue in language_issues.issues %}
                        <li>
                            <strong>Message:</strong> {{ issue.message }}<br>
                            <strong>Context:</strong> {{ issue.context }}<br>
                            <strong>Suggestions:</strong> 
                            {% if issue.suggestions %}
                                {{ issue.suggestions | join(", ") }}
                            {% else %}
                                None
                            {% endif %}
                            <hr>
                        </li>
                    {% endfor %}
                </ul>
            </div>
            {% if annotated_pdf %}
            <div class="pdf-viewer">
                <h3>Annotated PDF:</h3>
                <embed src="{{ annotated_pdf }}" type="application/pdf" width="100%" height="600px" />
                <br>
                <a href="{{ annotated_pdf }}" download="annotated_document.pdf">Download Annotated PDF</a>
            </div>
            {% endif %}
        </div>
        {% endif %}
    </div>
</body>
</html>