forked from FullDevDaniel/SoundGarden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.html
119 lines (110 loc) · 5.22 KB
/
admin.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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!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>Sound Gardens - Painel Administrativo</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/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="#" 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>Gerenciamento de eventos</h1>
<a href="cadastro-evento.html" class="btn btn-primary">Novo Evento</a>
</div>
<div class="bd-example">
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Data</th>
<th scope="col">Titulo</th>
<th scope="col">Atrações</th>
<th scope="col">Ações</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>05/03/2022 20:00</td>
<td>Festival Coala</td>
<td>Miley Cyrus, Liniker, Smashing Pumpkins</td>
<td>
<a href="reservas.html" class="btn btn-dark">ver reservas</a>
<a href="editar.html" class="btn btn-secondary">editar</a>
<a href="editar.html" class="btn btn-danger">excluir</a>
</td>
</tr>
<tr>
<th scope="row">2</th>
<td>05/03/2022 20:00</td>
<td>Indie Fest</td>
<td>Arctic Monkeys, The Kooks, Hiatus Kaiyote</td>
<td>
<a href="reservas.html" class="btn btn-dark">ver reservas</a>
<a href="editar.html" class="btn btn-secondary">editar</a>
<a href="editar.html" class="btn btn-danger">excluir</a>
</td>
</tr>
<tr>
<th scope="row">3</th>
<td>05/03/2022 20:00</td>
<td>Bourbon Jazz Festival</td>
<td>Esperanza Spalding, Zimbo Trio, Serial Funkers</td>
<td>
<a href="reservas.html" class="btn btn-dark">ver reservas</a>
<a href="editar.html" class="btn btn-secondary">editar</a>
<a href="editar.html" class="btn btn-danger">excluir</a>
</td>
</tr>
</tbody>
</table>
</div>
</main>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous">
</script>
</body>
</html>