-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·67 lines (54 loc) · 3.46 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- ==== Link do Bootstrap ==== -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<!-- ========================== -->
<title>Formulario-TrybeTrip</title>
</head>
<body class="bg-secondary-subtle">
<header class="container text-center text-white bg-success p-3 mb-5">
<h1 class="display-6">Concorra à Viagem dos seus sonhos com a TrybeTrip</h1>
<p class="lead"><em>Viajar não apenas reduz o estresse, mas também expande a mente.<em></p>
</header>
<form class="container bg-success-subtle rounded p-5 mb-5">
<fieldset>
<label for="fullName" class="form-label">Nome Completo:</label>
<input type="text" id="fullName" name="fullName" placeholder="Digite seu nome completo" maxlength="40" minlength="10" required class="form-control">
<br/>
<label for="email" class="form-label">Endereço de e-mail:</label>
<input type="email" id="email" name="email" placeholder="Digite seu e-mail" maxlength="50" minlength="10" required class="form-control">
<br/>
<div class="mb-3">
<label for="destination1" class="form-label">Cidade</label>
<input type="radio" id="destination1" className="radios" name="destinations" value="Cidade" required class="form-check-input me-2">
<label for="destination2" class="form-label">Campo</label>
<input type="radio" id="destination2" className="radios" name="destinations" value="Campo" required class="form-check-input me-2">
<label for="destination3" class="form-label">Praia</label>
<input type="radio" id="destination3" className="radios" name="destinations" value="Praia" required class="form-check-input me-2">
<label for="destination4" class="form-label">Montanhas</label>
<input type="radio" id="destination4" className="radios" name="destinations" value="Montanhas" required class="form-check-input me-2">
</div>
<label for="why" class="form-label">Por que você deveria ser a pessoa desenvolvedora escolhida pelo concurso TrybeTrip?</label>
<br/>
<textarea name="why" id="why" cols="60" rows="10" placeholder="Digite sua resposta vencedora aqui" class="form-control"></textarea>
<br/>
<label for="date" class="form-label">Qual a melhor data para realizar sua viagem?</label>
<input type="date" id="date" class="form-control">
<br/>
<label for="promo" class="form-label">Gostaria de receber outras incríveis oportunidades oferecidas pela Trybe.
<input type="checkbox" name="promo" id="promo" class="form-check-input">
</label>
<br/>
<label for="agreement" class="form-label">Concordo que imagens de minhas férias poderão ser usadas na divulgação de concursos futuros.
<input type="checkbox" name="agreement" id="agreement" required class="form-check-input mb-4">
</label>
</fieldset>
<button type="submit" id="submit-btn" disabled class="btn btn-success">Participar do concurso TrybeTrip</button>
<button type="reset" id="clear-btn" class="btn btn-dark">Apagar informações</button>
</form>
<script src="script.js"></script>
</body>
</html>