-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
26 lines (24 loc) · 889 Bytes
/
dashboard.html
File metadata and controls
26 lines (24 loc) · 889 Bytes
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard - Sistema de Gestão Escolar</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container dashboard" id="dashboard">
<h1>Dashboard - Bem-vindo!</h1>
<button id="logout">Sair</button>
<div id="menu">
<button onclick="carregarNotas()">Visualizar Notas</button>
<button onclick="buscarAluno()">Buscar Aluno</button>
<button id="btnRelatorio" onclick="gerarRelatorio()" style="display: none;">Gerar Relatório (Prof)</button>
</div>
<div id="conteudo">
<!-- Conteúdo dinâmico carregado via JS -->
</div>
</div>
<script src="js/dashboard.js"></script>
</body>
</html>