forked from monicaimendes/soundgarden
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d107792
commit 911d102
Showing
16 changed files
with
709 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
<!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>Novo evento</h1> | ||
|
||
</div> | ||
<div> | ||
<!-- - cadastro de evento (nome, atrações, descrição, horário, data, numero de ingressos) --> | ||
<form class="col-6"> | ||
<div class="mb-3"> | ||
<label for="nome" class="form-label">Nome</label> | ||
<input type="text" class="form-control" id="nome" aria-describedby="nome"> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="atracoes" class="form-label">Atrações</label> | ||
<input type="text" class="form-control" id="atracoes" aria-describedby="atracoes"> | ||
<small>insira o nome dos artistas separados por vírgula</small> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="descricao" class="form-label">Descrição</label> | ||
<textarea name="descricao" id="descricao" class="form-control" rows="5"></textarea> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="data" class="form-label">Data</label> | ||
<input type="datetime" name="data" id="data" class="form-control" | ||
placeholder="00/00/00 00:00"> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="lotacao" class="form-label">Lotação (número de ingressos disponiveis)</label> | ||
<input type="number" class="form-control" id="lotacao" aria-describedby="lotacao"> | ||
</div> | ||
<button type="submit" class="btn btn-primary">enviar</button> | ||
</form> | ||
</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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap'); | ||
body{ | ||
font-family: 'Questrial', sans-serif; | ||
} | ||
|
||
.img-responsive { | ||
max-width: 100%; | ||
} | ||
|
||
header { | ||
position: relative; | ||
box-shadow: 0px 5px 4px 0px rgb(63 63 63 / 27%); | ||
width: 100%; | ||
background-color: #fff; | ||
} | ||
aside { | ||
min-height: 100vh; | ||
} | ||
|
||
.nav-pills .nav-link.active, .nav-pills .show>.nav-link { | ||
background-color: #C2185B; | ||
} | ||
|
||
.btn-primary{ | ||
background-color: #C2185B; | ||
border-color: #C2185B; | ||
} | ||
|
||
main.login { | ||
width: 400px; | ||
} | ||
|
||
section.full{ | ||
width: 100%; | ||
min-height: 80vh; | ||
padding: 50px 0; | ||
} | ||
|
||
article.evento { | ||
width: 350px; | ||
} | ||
|
||
footer nav ul{ | ||
list-style: none; | ||
display: flex; | ||
} | ||
|
||
footer nav ul li { | ||
padding: 10px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
<!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>Editar evento</h1> | ||
</div> | ||
<div> | ||
<!-- - cadastro de evento (nome, atrações, descrição, horário, data, numero de ingressos) --> | ||
<form class="col-6"> | ||
<div class="mb-3"> | ||
<label for="nome" class="form-label">Nome</label> | ||
<input type="text" class="form-control" id="nome" aria-describedby="nome"> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="banner" class="form-label">Banner</label> | ||
<input type="text" class="form-control" id="banner" aria-describedby="banner"> | ||
<small>adicione o link da imagem</small> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="atracoes" class="form-label">Atrações</label> | ||
<input type="text" class="form-control" id="atracoes" aria-describedby="atracoes"> | ||
<small>insira o nome dos artistas separados por vírgula</small> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="descricao" class="form-label">Descrição</label> | ||
<textarea name="descricao" id="descricao" class="form-control" rows="5"></textarea> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="data" class="form-label">Data</label> | ||
<input type="datetime" name="data" id="data" class="form-control" | ||
placeholder="00/00/00 00:00"> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="lotacao" class="form-label">Lotação (número de ingressos disponiveis)</label> | ||
<input type="number" class="form-control" id="lotacao" aria-describedby="lotacao"> | ||
</div> | ||
<button type="submit" class="btn btn-primary">enviar</button> | ||
</form> | ||
</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> |
Oops, something went wrong.