-
Notifications
You must be signed in to change notification settings - Fork 0
/
estacionamento.html
75 lines (59 loc) · 2.37 KB
/
estacionamento.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- CSS -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/alertifyjs@1.13.0/build/css/alertify.min.css" />
<!-- Default theme -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/alertifyjs@1.13.0/build/css/themes/default.min.css" />
<link rel="stylesheet" href="style/style.css">
<link rel="shortcut icon" href="assets/icons/favicon.ico" type="image/x-icon">
<link rel="icon" href="assets/icons/favicon.ico" type="image/x-icon">
<title>Estacionamento IFSC | Campus Lages</title>
</head>
<body>
<section id="grid">
<header></header>
<!-- sidebar -->
<nav>
<div id="logo">
<img src="assets/images/IFSC_horizontal_marca2015_PNG.png" alt="">
</div>
<div class="pages">
<a href="index.html">Dashboard</a>
<a href="cardapio.html">Cardápio</a>
<a href="projetos.html">Projetos</a>
<a href="estacionamento.html" class="selected">Estacionamento</a>
</div>
</nav>
<!-- end sidebar -->
<!-- conteudo -->
<main>
<!-- botões de escolha -->
<div id="buttons">
<div id="list-slots" class="btn" onclick="listSlots()">Todas as vagas</div>
<div id="consult-situation" class="btn" onclick="situation()">Consultar vaga específica
</div>
</div>
<!-- end botões de escolha -->
<div class="chose-button">
<div id="list-slots">
<p class="title">Vagas</p>
<div id="cards-slots">
</div>
</div>
<div id="situation-slot">
</div>
</div>
</main>
<!-- conteudo -->
</section>
<script src="//cdn.jsdelivr.net/npm/alertifyjs@1.13.0/build/alertify.min.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="js/estacionamento/etcm-config.js"></script>
<script src="js/estacionamento/etcm-btn-routes.js"></script>
<script src="js/estacionamento/etcm-list-slots.js"></script>
</body>
</html>