Spaces:
Running
Running
Update index.html
Browse files- index.html +17 -7
index.html
CHANGED
@@ -1,24 +1,34 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
-
<html lang="
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
-
<title>PDF
|
7 |
<link rel="stylesheet" href="style.css">
|
8 |
</head>
|
9 |
<body>
|
10 |
<div id="app">
|
11 |
-
<
|
|
|
|
|
|
|
12 |
<div class="upload-area">
|
13 |
-
<input type="file" accept=".pdf"
|
14 |
<label for="file-upload" class="upload-label">
|
15 |
<div class="upload-icon"></div>
|
16 |
-
<span>
|
17 |
</label>
|
18 |
</div>
|
19 |
-
<div id="loading" class="loading hidden"
|
|
|
|
|
|
|
20 |
<div id="analysis-results" class="analysis-results"></div>
|
21 |
-
|
|
|
|
|
|
|
|
|
22 |
</div>
|
23 |
<script src="index.js"></script>
|
24 |
</body>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
+
<html lang="pt-BR">
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Analisador de Conformidade PDF</title>
|
7 |
<link rel="stylesheet" href="style.css">
|
8 |
</head>
|
9 |
<body>
|
10 |
<div id="app">
|
11 |
+
<header>
|
12 |
+
<h1>Analisador de Conformidade PDF</h1>
|
13 |
+
</header>
|
14 |
+
<main class="container">
|
15 |
<div class="upload-area">
|
16 |
+
<input type="file" accept=".pdf" id="file-upload" class="hidden">
|
17 |
<label for="file-upload" class="upload-label">
|
18 |
<div class="upload-icon"></div>
|
19 |
+
<span>Arraste um PDF aqui ou clique para fazer upload</span>
|
20 |
</label>
|
21 |
</div>
|
22 |
+
<div id="loading" class="loading hidden">
|
23 |
+
<div class="spinner"></div>
|
24 |
+
<span>Analisando documento...</span>
|
25 |
+
</div>
|
26 |
<div id="analysis-results" class="analysis-results"></div>
|
27 |
+
<div id="compliance-report" class="compliance-report hidden">
|
28 |
+
<h2>Relat贸rio de Conformidade</h2>
|
29 |
+
<div class="report-content"></div>
|
30 |
+
</div>
|
31 |
+
</main>
|
32 |
</div>
|
33 |
<script src="index.js"></script>
|
34 |
</body>
|