-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform-banner.html
98 lines (89 loc) · 3.52 KB
/
form-banner.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
<!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 Garden - Lolla</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>
<header class=" d-flex justify-content-center align-items-center">
<a href="index.html"><img src="img/Sound-logo (1).png" width="300" alt=""></a>
</header>
<main class="d-flex flex-column">
<form style="padding: 250px; margin: auto;" class="row g-3 needs-validation" novalidate>
<div class="col-md-6">
<label for="validationCustom01" class="form-label">Nome</label>
<input type="text" class="form-control" id="validationCustom01" value="" required>
<div class="valid-feedback">
Ótimo!
</div>
</div>
<div class="col-md-6">
<label for="validationCustom04" class="form-label">Evento</label>
<select class="form-select" id="validationCustom04" required>
<option selected value="1">Lollapalooza</option>
</select>
<div class="invalid-feedback">
Selecione um evento existente
</div>
</div>
<div class="col-md-6">
<label for="validationCustom05" class="form-label">E-mail</label>
<input type="text" class="form-control" id="validationCustom05" required>
<div class="invalid-feedback">
Preencha o campo com seu e-mail
</div>
</div>
<div class="col-md-6">
<label for="validationCustom04" class="form-label">Quantidade</label>
<input type="number" name="Quantidade" class="form-control" id="validationCustom04">
</select>
<div class="invalid-feedback">
Selecione um algo válido
</div>
</div>
<div class="col-12">
<div class="form-check">
<input class="form-check-input" type="checkbox" value="" id="invalidCheck" required>
<label class="form-check-label" for="invalidCheck">
Aceito os termos e condições.
</label>
<div class="invalid-feedback">
Você precisa aceitar os termos e condições
</div>
</div>
</div>
<div class="d-flex justify-content-around flex-wrap">
<button style="background-color: #F8BBD0; border-color:#F8BBD0;" class="btn btn-primary" type="submit">concluir
reserva</button>
<a href="/index.html" style="background-color: #F8BBD0; border-color:#F8BBD0;" class="btn btn-primary"
type="submit">cancelar</a>
</div>
</form>
</main>
<footer style="margin-top: 10px;">
<div class="container d-flex justify-content-center align-items-center">
<a href="#">
<img src="img/Sound-logo-white (1).png" width="200px" alt="">
</a>
<nav>
<ul>
<li>
<a class="foot" href="eventos.html">eventos</a>
</li>
<li>
<a class="foot" href="admin.html">painel administrativo</a>
</li>
</ul>
</nav>
</div>
</footer>
<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>