-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (92 loc) · 3.19 KB
/
Copy pathindex.html
File metadata and controls
104 lines (92 loc) · 3.19 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
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Plataforma de controle, consulta e rastreabilidade dos medidores bypassados — UTD_PID."
/>
<meta name="theme-color" content="#123a63" />
<title>Medidores Bypassados — UTD_PID</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+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<a class="skip-link" href="#conteudo">Pular para o conteúdo</a>
<div class="app">
<aside class="sidebar" id="sidebar">
<div class="sidebar-brand">
<span class="brand-mark" aria-hidden="true">
<svg
viewBox="0 0 24 24"
fill="none"
stroke-width="1.9"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect x="4" y="3" width="16" height="18" rx="2" />
<path d="M8 8h8M8 12h8M8 16h4" />
</svg>
</span>
<span class="brand-text">
<strong>Medidores Bypassados</strong>
<span>UTD_PID</span>
</span>
</div>
<nav class="nav" id="nav" aria-label="Navegação principal"></nav>
<div class="sidebar-footer">
Controle operacional<br />
e rastreabilidade
</div>
</aside>
<div class="sidebar-overlay" id="sidebarOverlay"></div>
<div class="main">
<header class="topbar">
<button class="menu-btn" id="menuBtn" type="button" aria-label="Abrir menu">
<svg
viewBox="0 0 24 24"
fill="none"
stroke-width="1.9"
stroke-linecap="round"
aria-hidden="true"
>
<path d="M3 6h18M3 12h18M3 18h18" />
</svg>
</button>
<p class="topbar-title" id="topbarTitle">Dashboard</p>
<span class="status-pill" id="connPill">
<span class="dot" aria-hidden="true"></span>
<span class="rotulo">Sistema online</span>
</span>
</header>
<main class="view" id="conteudo" tabindex="-1"></main>
<footer class="site-footer">
Desenvolvido por <strong>Igor Juan</strong>
·
<a
href="https://github.com/1gorjuan"
target="_blank"
rel="noopener noreferrer"
>GitHub</a
>
·
<a
href="https://www.linkedin.com/in/igor-rocha/"
target="_blank"
rel="noopener noreferrer"
>LinkedIn</a
>
</footer>
</div>
</div>
<div class="toasts" id="toasts" aria-live="polite" aria-atomic="false"></div>
<div class="modal-root" id="modalRoot" hidden></div>
<script type="module" src="js/app.js"></script>
</body>
</html>