-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
25 lines (25 loc) · 1.18 KB
/
index.php
File metadata and controls
25 lines (25 loc) · 1.18 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sistema de Escala de Fiscais</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
<h1 class="mb-4 text-center">Sistema de Gestão de Escalas</h1>
<div class="list-group">
<a href="professores.php" class="list-group-item list-group-item-action">Gerenciar Professores</a>
<a href="disciplinas.php" class="list-group-item list-group-item-action">Gerenciar Disciplinas</a>
<a href="provas.php" class="list-group-item list-group-item-action">Gerenciar Provas</a>
<a href="escala.php" class="list-group-item list-group-item-action bg-primary text-white"><strong>Gerar Nova Escala</strong></a>
<a href="ver_escalas.php" class="list-group-item list-group-item-action bg-secondary text-white">Visualizar Escalas Geradas</a>
<br>
<br>
<br>
<h6>Sistema feito por Marcos Raffael ;-D</h6>
</div>
</div>
</body>
</html>