-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (97 loc) · 3.02 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
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
<!DOCTYPE html>
<html lang="pt-br">
<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>Explorer | Stage 03 - Projeto 01</title>
<link rel="stylesheet" href="css/global.css" />
<link rel="stylesheet" href="css/header.css" />
<link rel="stylesheet" href="css/form.css" />
</head>
<body>
<div id="page">
<header>
<h1>Avalie a sua mentoria</h1>
<p>Chegou a hora de avaliar o seu mentor. Bora lá?</p>
<img
id="stars"
src="img/stars-balloon.svg"
alt="Balão de conversa vermelho com 3 estrelas brancas e 2 estrelas cinzas em sequência"
/>
<div class="form-header">
<h2>Informações pessoais</h2>
</div>
</header>
<form id="rating">
<fieldset>
<div class="fieldset-wrapper">
<div class="col-2">
<div class="input-wrapper">
<label for="name">Nome</label>
<input type="text" id="name" required />
</div>
<div class="input-wrapper">
<label for="last-name">Sobrenome</label>
<input type="text" id="last-name" required />
</div>
</div>
<div class="input-wrapper">
<label for="email">
E-mail
<span>(digite um e-mail válido)</span>
</label>
<input type="email" id="email" required />
</div>
</div>
</fieldset>
<fieldset>
<div class="fieldset-wrapper">
<legend>Informações do mentor</legend>
<div class="input-wrapper">
<label for="mentor">Selecione quem foi o seu mentor</label>
<select id="mentor">
<option value="Mayk Brito">Mayk Brito</option>
<option value="Diego Fernandes">Diego Fernandes</option>
<option value="Jackeliny Gracielly">Jackeliny Gracielly</option>
</select>
</div>
<div class="input-wrapper">
<label for="feedback">Feedback sobre o mentor</label>
<textarea id="feedback" required></textarea>
</div>
<div class="checkbox-wrapper">
<input type="checkbox" id="confirm" />
<label for="confirm">Todas as minhas dúvidas foram esclarecidas durante a mentoria.</label>
</div>
</div>
</fieldset>
<fieldset>
<div class="fieldset-wrapper">
<legend>Agendando a próxima mentoria</legend>
<div class="col-3">
<div class="input-wrapper">
<label for="mentorship-date">
Data
<span>(DD/MM/AAAA)</span>
</label>
<input type="date" id="mentorship-date" />
</div>
<div class="col-2">
<div class="input-wrapper">
<label for="mentorship-begin">Das</label>
<input type="time" id="mentorship-begin" />
</div>
<div class="input-wrapper">
<label for="mentorship-end">Até</label>
<input type="time" id="mentorship-end" />
</div>
</div>
</div>
</div>
</fieldset>
<button type="submit" form="rating">Salvar</button>
</form>
</div>
</body>
</html>