-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (89 loc) · 3.9 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.googleapis.com">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins&family=Staatliches&display=swap" rel="stylesheet">
<title>Avalie a sua mentoria</title>
</head>
<body>
<header>
<h1>AVALIE A SUA MENTORIA</h1>
<p>Chegou a hora de avaliar o seu mentor. Bora lá?</p>
<img src="images/img1.svg" alt="ilustração de balão de comentário com cinco estrelas, três delas estão preenchidas">
</header>
<form id="mentorship-feedback">
<fieldset>
<div id="first-legend">
<legend>INFORMAÇÕES PESSOAIS</legend>
</div>
<div class="first-fieldset">
<div class="two-columns">
<div class="input-wrap">
<label for="student-name">Nome</label>
<input type="text" id="student-name" required/>
</div>
<div class="input-wrap">
<label for="student-surname">Sobrenome</label>
<input type="text" id="student-surname" required/>
</div>
</div>
<div class="input-wrap">
<label for="student-email">Email <span>(digite um email válido)</span></label>
<input type="email" id="student-email" required/>
</div>
</div>
</fieldset>
<fieldset>
<div class="normal-fieldset">
<div class="normal-legend">
<legend>INFORMAÇÕES DO MENTOR</legend>
</div>
<div class="input-wrap">
<label for="mentor">Selecione quem foi o seu mentor</label>
<select id="mentor">
<option value="Paulo">Paulo</option>
<option value="Cláudia">Cláudia</option>
<option value="Ana">Ana</option>
<option value="Henrique">Henrique</option>
</select>
</div>
<div class="input-wrap">
<label for="feedback">Feedback sobre o mentor</label>
<textarea name="" id="feedback" required></textarea>
</div>
<div class="checkbox-wrap">
<input type="checkbox" id="question-solved"/>
<label for="question-solved">Todas as minhas dúvidas foram esclarecidas durante a mentoria.</label>
</div>
</div>
</fieldset>
<fieldset>
<div class="normal-fieldset">
<div class="normal-legend">
<legend>AGENDANDO PRÓXIMA MENTORIA</legend>
</div>
<div class="three-columns">
<div class="input-wrap">
<label for="next-date">Data <span>(DD/MM/AAAA)</span></label>
<input type="date" id="next-date" required/>
</div>
<div class="input-wrap">
<label for="next-date-begin">Das</label>
<input type="time" id="next-date-begin" required/>
</div>
<div class="input-wrap">
<label for="next-date-end">Até</label>
<input type="time" id="next-date-end" required/>
</div>
</div>
</div>
</fieldset>
<button form="mentorship-feedback">SALVAR</button>
</form>
</body>
</html>