-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (129 loc) · 4.9 KB
/
Copy pathindex.html
File metadata and controls
139 lines (129 loc) · 4.9 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Envie PDFs de sismogramas e gere o relatorio pronto no navegador, sem backend.">
<meta name="theme-color" content="#f4f6f8">
<title>Report Sismografia Enaex</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Manrope:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<main class="app-shell">
<header class="topbar">
<a class="brand-lockup" href="./" aria-label="Enaex Report Sismografia">
<img class="brand-logo" src="./VISUAL/Logo enaex sem texto.png" alt="Enaex">
<span>Report Sismografia</span>
</a>
<div class="topbar-meta">
<span class="status-pill">GeoSonics</span>
<span class="status-pill">Instantel</span>
<span class="badge badge-muted" id="config-badge">Configuracao local</span>
</div>
</header>
<section class="command-grid">
<aside class="upload-panel">
<div class="section-heading">
<p class="eyebrow">Entrada</p>
<h1>Processamento de sismogramas</h1>
</div>
<div class="dropzone" id="dropzone">
<input id="file-input" type="file" accept="application/pdf,.pdf" multiple hidden>
<div class="dropzone-icon" aria-hidden="true">PDF</div>
<div class="dropzone-copy">
<strong>Solte os arquivos aqui</strong>
<span>ou selecione os PDFs para iniciar a leitura.</span>
</div>
<button class="button button-primary" id="pick-button" type="button">Selecionar PDFs</button>
</div>
<div class="action-row">
<a class="button button-primary button-disabled" id="download-link" href="#" download aria-disabled="true">Baixar PDF</a>
<button class="button button-secondary" id="clear-button" type="button">Limpar</button>
</div>
<div class="status-line" id="status-line" aria-live="polite">Aguardando PDFs.</div>
<div class="progress-wrap" id="progress-wrap" hidden>
<div class="progress-meta">
<span id="progress-label">Processando</span>
<span id="progress-count">0/0</span>
</div>
<div class="progress-track">
<div class="progress-bar" id="progress-bar"></div>
</div>
</div>
<div class="flow-list" aria-label="Fluxo de trabalho">
<div class="flow-item">
<span>01</span>
<p>Importar PDFs</p>
</div>
<div class="flow-item">
<span>02</span>
<p>Validar registros</p>
</div>
<div class="flow-item">
<span>03</span>
<p>Exportar relatorio</p>
</div>
</div>
</aside>
<section class="data-panel">
<section class="stats-panel">
<div class="panel-heading">
<div>
<p class="eyebrow">Resumo</p>
<h2>Indicadores</h2>
</div>
</div>
<div class="stats-grid" id="stats-grid"></div>
</section>
<section class="records-panel">
<div class="panel-heading">
<div>
<p class="eyebrow">Registros</p>
<h2>Arquivos processados</h2>
</div>
<div class="badge badge-muted" id="file-count">0 PDFs</div>
</div>
<div class="table-scroll">
<table class="records-table" aria-label="Registros extraidos">
<thead>
<tr>
<th>Arquivo</th>
<th>Local</th>
<th>Cliente</th>
<th>Data</th>
<th>PVS</th>
<th>PSPL</th>
<th>Situacao</th>
</tr>
</thead>
<tbody id="records-body">
<tr class="empty-row">
<td colspan="7">Selecione PDFs para ver os dados extraidos.</td>
</tr>
</tbody>
</table>
</div>
</section>
<section class="detail-panel">
<div class="panel-heading">
<div>
<p class="eyebrow">Detalhe</p>
<h2>Ultimo arquivo lido</h2>
</div>
</div>
<div class="detail-list" id="detail-list">
<div class="empty-state">
O detalhe tecnico do ultimo registro sera exibido apos o processamento.
</div>
</div>
</section>
</section>
</section>
</main>
<script src="./vendor/html2canvas.min.js"></script>
<script type="module" src="./app.js"></script>
</body>
</html>