-
Notifications
You must be signed in to change notification settings - Fork 2
/
reservas.html
75 lines (70 loc) · 2.82 KB
/
reservas.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reservas</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<aside class="d-flex flex-column flex-shrink-0 p-3 bg-light col-2">
<a href="/" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto link-dark text-decoration-none">
<svg class="bi me-2" width="40" height="32">
<use xlink:href="#bootstrap"></use>
</svg>
<span class="fs-4 px-5">
<img src="img/Sound-logo.png" alt="Gama Lounge" class="img-responsive">
</span>
</a>
<p class="text-center">painel administrativo</p>
<hr>
<ul class="nav nav-pills flex-column mb-auto">
<li class="nav-item">
<a href="/eventos.html" class="nav-link active" aria-current="page">
Eventos
</a>
</li>
<li>
<a href="#" class="nav-link link-dark">
Funcionários
</a>
</li>
<li>
<a href="#" class="nav-link link-dark">
Usuários
</a>
</li>
<li>
<a href="index.html" class="nav-link link-dark">
Landing Page
</a>
</li>
</ul>
<hr>
</aside>
<main class="col-9 p-5">
<div class="my-5">
<h1>Reservas</h1>
</div>
<div class="bd-example">
<table class="table">
<thead>
<tr>
<th scope="col">Nome</th>
<th scope="col">E-mail</th>
<th scope="col">Quantidade de Ingresso</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</main>
<script src="js/reservas.js"></script>
</body>
</html>