-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (82 loc) · 3.7 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
<!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>Projeto Trybewarts</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.google.com/specimen/Ubuntu">
</head>
<body>
<header class="header">
<img src="images/trybewarts-header-logo.svg" alt="logo-trybe" class="trybewarts-header-logo">
<h1 id="trybewarts-header-title">Trybewarts</h1>
<form class="trybewarts-login">
<input type="email" name="email" class="email" placeholder="Email">
<input type="password" name="password" class="password" placeholder="Senha">
<button class="btn">Entrar</button>
</form>
</header>
<main id="mainForm">
<form id="evaluation-form">
<div class="full-name">
<input type="text" id="input-name" name= "input-name" placeholder="Nome">
<input type="text" id="input-lastname" name="input-lastname" placeholder="Sobrenome">
</div>
<div class="email-house">
<input type="email" id="input-email" name="input-email" placeholder="Email">
<select name="txtxSel" id="house">
<option value="Gitnória" id="gitnoria-house">Gitnória</option>
<option value="Reactpuff" id="reactpuff-house">Reactpuff</option>
<option value="Corvinode" id="corvinode-house">Corvinode</option>
<option value="Pytherina" id="pytherina-house">Pytherina</option>
</select>
</div>
<hr>
<div class="secondForm">
<div class="familyInputs">
<label id="label-family">Qual sua família?</label>
<input type="radio" name="family" value="Frontend"> Frontend
<input type="radio" name="family" value="Backend"> Backend
<input type="radio" name="family" value="FullStack"> FullStack
</div>
<div class="contentInputs">
<label id="label-content">Qual conteúdo você está com mais vontade de aprender?</label>
<input type="checkbox" value="HoFs"> HoFs
<input type="checkbox" value="Jest"> Jest
<input type="checkbox" value="Promises"> Promises
<input type="checkbox" value="React"> React
<input type="checkbox" value="SQL"> SQL
<input type="checkbox" value="Python"> Python
</div>
</div>
<hr>
<div class="valuation-input">
<label for="" id="label-rate">Como você avalia a Trybewarts?</label>
<input type="radio" name="rate" value="1">1
<input type="radio" name="rate" value="2">2
<input type="radio" name="rate" value="3">3
<input type="radio" name="rate" value="4">4
<input type="radio" name="rate" value="5">5
<input type="radio" name="rate" value="6">6
<input type="radio" name="rate" value="7">7
<input type="radio" name="rate" value="8">8
<input type="radio" name="rate" value="9">9
<input type="radio" name="rate" value="10">10
</div>
<label for="" class="textarea">Deixe seu comentário:</label>
<textarea name="" id="" cols="30" rows="10" maxlength="500"></textarea>
<div class="finalCheckbox">
<label id="label-infos">Você concorda com o uso das informações acima?</label>
<input type="checkbox" id="agreement">
</div>
</form>
<img src="images/trybewarts-colored.svg" alt="" id="trybewarts-forms-logo">
</main>
<button type="submit" id="submit-btn">Enviar</button>
<br><br>
<footer><em>Direitos reservados à Trybewarts©</em></footer>
<script src="script.js"></script>
</body>
</html>